Skip to content

Commit

Permalink
re-implement timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlind committed Dec 22, 2023
1 parent 3331904 commit eed6d89
Showing 1 changed file with 2 additions and 2 deletions.
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"])
client.delete_model(model["name"], timeout=360)
except exceptions.ModelDoesNotExistError:
continue

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

Expand Down

0 comments on commit eed6d89

Please sign in to comment.