Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cpp/tests/linear_programming/c_api_tests/c_api_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ class CPUOnlyTestEnvironment {

// TODO: Add numerical assertions once gRPC remote solver replaces the stub implementation.
// Currently validates that the CPU-only C API path completes without errors.
TEST(c_api_cpu_only, lp_solve)
TEST(c_api_cpu_only, DISABLED_lp_solve)
{
CPUOnlyTestEnvironment env;
const std::string& rapidsDatasetRootDir = cuopt::test::get_rapids_dataset_root_dir();
Expand All @@ -391,7 +391,7 @@ TEST(c_api_cpu_only, lp_solve)
}

// TODO: Add numerical assertions once gRPC remote solver replaces the stub implementation.
TEST(c_api_cpu_only, mip_solve)
TEST(c_api_cpu_only, DISABLED_mip_solve)
{
CPUOnlyTestEnvironment env;
const std::string& rapidsDatasetRootDir = cuopt::test::get_rapids_dataset_root_dir();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ def _impl_warmstart_cpu_only():
class TestCPUOnlyExecution:
"""Tests that run with CUDA_VISIBLE_DEVICES='' to simulate CPU-only hosts."""

pytestmark = pytest.mark.skip(reason="CPU-only tests temporarily disabled")

@pytest.fixture
def env(self):
return _cpu_only_env()
Expand Down Expand Up @@ -201,6 +203,8 @@ def test_warmstart_cpu_only(self, env):
class TestCuoptCliCPUOnly:
"""Test that cuopt_cli runs without CUDA in remote-execution mode."""

pytestmark = pytest.mark.skip(reason="CPU-only tests temporarily disabled")

@pytest.fixture
def env(self):
return _cpu_only_env()
Expand Down
Loading