Skip to content

Commit 35e560b

Browse files
committed
(fix): increase wait time for integration tests
1 parent 4667717 commit 35e560b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • mflix/server/python-fastapi/tests/integration

mflix/server/python-fastapi/tests/integration/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ def server():
6161
cwd=server_python_dir
6262
)
6363

64-
# Wait for server to be ready (max 10 seconds)
65-
max_wait = 10
64+
# Wait for server to be ready (max 30 seconds)
65+
max_wait = 30
6666
start_time = time.time()
6767
while time.time() - start_time < max_wait:
6868
if is_port_in_use(test_port):

0 commit comments

Comments
 (0)