Skip to content

Commit 70c7855

Browse files
committed
fix test by waiting until data rows are processed
1 parent 2b0cc80 commit 70c7855

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/test_project.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ def test_project(client, rand_gen):
4343

4444

4545
def test_project_export_v2(configured_project_with_label):
46-
project, _, _, label = configured_project_with_label
46+
project, _, data_row, label = configured_project_with_label
47+
project._wait_until_data_rows_are_processed(
48+
[data_row.id], wait_processing_max_seconds=3600, sleep_interval=5)
4749
label_id = label.uid
4850
# Wait for exporter to retrieve latest labels
4951
time.sleep(10)

0 commit comments

Comments
 (0)