Skip to content

Commit

Permalink
test upping timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlind committed Dec 22, 2023
1 parent 02c1d45 commit dcfc131
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integration_tests/client/datatype/test_data_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_generate_prediction_data(client: Client):
Annotation.type == AnnotationType.BOX,
],
)
eval_results = eval_job.wait_for_completion(timeout=3)
eval_results = eval_job.wait_for_completion(timeout=30)
assert eval_results.status == JobStatus.DONE

eval_dict = asdict(eval_results)
Expand Down
4 changes: 2 additions & 2 deletions integration_tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ def db() -> Session:

for model in client.get_models():
try:
client.delete_model(model["name"], timeout=5)
client.delete_model(model["name"], timeout=30)
except exceptions.ModelDoesNotExistError:
continue

for dataset in client.get_datasets():
try:
client.delete_dataset(dataset["name"], timeout=5)
client.delete_dataset(dataset["name"], timeout=30)
except exceptions.DatasetDoesNotExistError:
continue

Expand Down

0 comments on commit dcfc131

Please sign in to comment.