From 37ab403e36c3cd7817885eae51443fbc029b85f4 Mon Sep 17 00:00:00 2001 From: Mark Saroufim Date: Tue, 6 Jan 2026 23:30:04 -0800 Subject: [PATCH] Skip MI300x8 tests since the machines are no longer available --- tests/test_github.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_github.py b/tests/test_github.py index d1eedfd7..413e00bd 100644 --- a/tests/test_github.py +++ b/tests/test_github.py @@ -83,7 +83,7 @@ def github_config(): @pytest.mark.integration @pytest.mark.asyncio -@pytest.mark.parametrize("gpu_type", [GitHubGPU.NVIDIA, GitHubGPU.MI300x8]) +@pytest.mark.parametrize("gpu_type", [GitHubGPU.NVIDIA]) async def test_github_launcher_python_script(project_root: Path, github_config: GitHubConfig, gpu_type: GitHubGPU): """ Test GitHubLauncher with a real Python script using real GitHub Actions. @@ -199,11 +199,14 @@ async def test_github_launcher_failing_script(project_root: Path, github_config: @pytest.mark.integration @pytest.mark.asyncio +@pytest.mark.skip(reason="MI300x8 machines are no longer available") @pytest.mark.parametrize("gpu_type", [GitHubGPU.MI300x8]) async def test_github_launcher_multi_gpu(project_root: Path, github_config: GitHubConfig, gpu_type: GitHubGPU): """ Test GitHubLauncher with a real Python script using real GitHub Actions. Tests all GPU types to verify runners are working. + + Note: This test is skipped because MI300x8 machines are no longer available. """ launcher = GitHubLauncher(repo=github_config.repo, token=github_config.token, branch=github_config.branch) reporter = MockProgressReporter("GitHub Integration Test")