Skip to content

Commit

Permalink
Merge pull request #3469 from samuelgarcia/fix_main
Browse files Browse the repository at this point in the history
Fix main
  • Loading branch information
samuelgarcia authored Oct 9, 2024
2 parents 792958f + 1ffe6cc commit badc4c5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/spikeinterface/benchmark/tests/test_benchmark_sorter.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ def test_SorterStudy(setup_module):
print(study)

# # this run the sorters
# study.run()
study.run()

# # this run comparisons
# study.compute_results()
study.compute_results()
print(study)

# this is from the base class
Expand All @@ -84,5 +84,7 @@ def test_SorterStudy(setup_module):

if __name__ == "__main__":
study_folder = Path(__file__).resolve().parents[4] / "cache_folder" / "benchmarks" / "test_SorterStudy"
if study_folder.exists():
shutil.rmtree(study_folder)
create_a_study(study_folder)
test_SorterStudy(study_folder)

0 comments on commit badc4c5

Please sign in to comment.