Skip to content

Commit 902b1a6

Browse files
authored
Fix integration tests (#1149)
* Use ghcr.io/cirruslabs/macos-tahoe-base:latest * CI: "Test on Sequoia" can be named just "Test" * integration-test: can use latest requests now that the bug is fixed
1 parent 90d9500 commit 902b1a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.cirrus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use_compute_credits: true
22

33
task:
4-
name: Test on Sequoia
4+
name: Test
55
alias: test
66
persistent_worker:
77
labels:

integration-tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pytest
22
testcontainers
3-
requests == 2.31.0 # work around https://github.com/psf/requests/issues/6707
3+
requests
44
bitmath
55
pytest-dependency
66
paramiko

integration-tests/test_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def test_run(tart, run_opts):
99
vm_name = f"integration-test-run-{uuid.uuid4()}"
1010

1111
# Instantiate a VM with admin:admin SSH access
12-
tart.run(["clone", "ghcr.io/cirruslabs/macos-sonoma-base:latest", vm_name])
12+
tart.run(["clone", "ghcr.io/cirruslabs/macos-tahoe-base:latest", vm_name])
1313

1414
# Run the VM asynchronously
1515
tart_run_process = tart.run_async(["run", vm_name] + run_opts)

0 commit comments

Comments
 (0)