Skip to content

Commit

Permalink
remove deletion timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlind committed Dec 22, 2023
1 parent dcfc131 commit 3331904
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"], timeout=30)
client.delete_model(model["name"])
except exceptions.ModelDoesNotExistError:
continue

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

Expand Down

0 comments on commit 3331904

Please sign in to comment.