Skip to content

Commit

Permalink
CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentAntoine committed Jan 18, 2024
1 parent 8e7871d commit 28d26d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_warehouse/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def wait_for_data_warehous_and_migrations(

# Migrate test data
elapsed_time = 0
while migrations_in_progress and elapsed_time < timeout:
while (migrations_in_progress or elapsed_time < 10) and elapsed_time < timeout:
print(f"Waiting for test data migrations ({elapsed_time}/{timeout})")
running_containers = list(
itertools.chain.from_iterable([c["Names"] for c in client.containers()])
Expand Down

0 comments on commit 28d26d4

Please sign in to comment.