Skip to content

Commit 4480da3

Browse files
authored
Fix CloudRift integrity tests (#202)
The `us-east-nc-nr-1` location is no longer present in the catalog, while other locations are. Not sure how often the locations list is expected to change, so it seems to be easier not to test for location presence.
1 parent 2fc94f2 commit 4480da3

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

src/integrity_tests/test_cloudrift.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,3 @@ def test_gpu_present(data_rows: list[dict]):
3030
@pytest.mark.parametrize("gpu_count", [1, 2])
3131
def test_gpu_count_present(gpu_count: int, data_rows: list[dict]):
3232
assert str(gpu_count) in map(itemgetter("gpu_count"), data_rows)
33-
34-
35-
@pytest.mark.parametrize("location", ["us-east-nc-nr-1"])
36-
def test_location_is_present(location: str, data_rows: list[dict]):
37-
assert location in map(itemgetter("location"), data_rows)

0 commit comments

Comments
 (0)