Skip to content

Commit 0095817

Browse files
committed
chore: improve dagster maintenance path
1 parent 5100b58 commit 0095817

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/deploy_ecs/tests/test_deploy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ def docker_context(test_id, monkeypatch, tmpdir):
2424

2525
# Use ecs --local-simulation
2626
# https://docs.docker.com/cloud/ecs-integration/#local-simulation
27-
subprocess.call(["docker", "context", "create", "ecs", "--local-simulation", test_id])
27+
subprocess.run(["docker", "context", "create", "ecs", "--local-simulation", test_id], check=True)
2828

2929
yield test_id
3030

31-
subprocess.call(["docker", "context", "rm", test_id])
31+
subprocess.run(["docker", "context", "rm", test_id], check=True)
3232

3333

3434
@pytest.fixture

0 commit comments

Comments
 (0)