Skip to content

Commit

Permalink
Allow more time for system startup
Browse files Browse the repository at this point in the history
  • Loading branch information
sairon committed Oct 31, 2023
1 parent f0c60d4 commit d783402
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/smoke_test/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


@pytest.mark.dependency()
@pytest.mark.timeout(350)
@pytest.mark.timeout(450)
def test_init(shell):
def check_container_running(container_name):
out = shell.run_check(
Expand Down
2 changes: 1 addition & 1 deletion tests/supervisor_test/test_supervisor.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def stash() -> dict:


@pytest.mark.dependency()
@pytest.mark.timeout(300)
@pytest.mark.timeout(450)
def test_start_supervisor(shell, shell_json):
def check_container_running(container_name):
out = shell.run_check(f"docker container inspect -f '{{{{.State.Status}}}}' {container_name} || true")
Expand Down

0 comments on commit d783402

Please sign in to comment.