Skip to content

Commit d85c9ee

Browse files
author
Mark Saroufim
authored
Skip MI300x8 tests since the machines are no longer available (#393)
1 parent 96a1226 commit d85c9ee

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/test_github.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def github_config():
8383

8484
@pytest.mark.integration
8585
@pytest.mark.asyncio
86-
@pytest.mark.parametrize("gpu_type", [GitHubGPU.NVIDIA, GitHubGPU.MI300x8])
86+
@pytest.mark.parametrize("gpu_type", [GitHubGPU.NVIDIA])
8787
async def test_github_launcher_python_script(project_root: Path, github_config: GitHubConfig, gpu_type: GitHubGPU):
8888
"""
8989
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:
199199

200200
@pytest.mark.integration
201201
@pytest.mark.asyncio
202+
@pytest.mark.skip(reason="MI300x8 machines are no longer available")
202203
@pytest.mark.parametrize("gpu_type", [GitHubGPU.MI300x8])
203204
async def test_github_launcher_multi_gpu(project_root: Path, github_config: GitHubConfig, gpu_type: GitHubGPU):
204205
"""
205206
Test GitHubLauncher with a real Python script using real GitHub Actions.
206207
Tests all GPU types to verify runners are working.
208+
209+
Note: This test is skipped because MI300x8 machines are no longer available.
207210
"""
208211
launcher = GitHubLauncher(repo=github_config.repo, token=github_config.token, branch=github_config.branch)
209212
reporter = MockProgressReporter("GitHub Integration Test")

0 commit comments

Comments
 (0)