Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
floriankrb committed Dec 3, 2024
1 parent 2896b1f commit 83d4d18
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions tests/test_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ def setup_datasets():
print("# Setup done")


def setup_module():
teardown_module(raise_if_error=False)
def _setup_module():
_teardown_module(raise_if_error=False)
setup_experiments()
setup_checkpoints()
setup_datasets()
Expand Down Expand Up @@ -118,7 +118,7 @@ def teardown_datasets(errors):
errors.append(e)


def teardown_module(raise_if_error=True):
def _teardown_module(raise_if_error=True):
errors = []
teardown_experiments(errors)
teardown_checkpoints(errors)
Expand Down Expand Up @@ -187,10 +187,6 @@ def _test_list_commands():
run("anemoi-registry", "list", "datasets")


def test_print():
print("test")


if __name__ == "__main__":
_test_list_commands()
print()
Expand Down

0 comments on commit 83d4d18

Please sign in to comment.