We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b463f2 commit b3a1e51Copy full SHA for b3a1e51
tests/unit/test_editable.py
@@ -38,7 +38,11 @@ def test_editable_by_host():
38
container = app.start_container()
39
40
# give the container a chance to start
41
+ waiting_container_counter = 0
42
while container.status != "running":
43
+ if waiting_container_counter >= 60:
44
+ assert status == "running"
45
+ waiting_container_counter = waiting_container_counter + 1
46
time.sleep(1)
47
48
try:
0 commit comments