Skip to content

Commit

Permalink
Change all fixture scopes to module
Browse files Browse the repository at this point in the history
  • Loading branch information
alejoe91 committed Apr 29, 2024
1 parent c6f8f1f commit e0a47a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/spikeinterface/exporters/tests/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,17 @@ def make_sorting_analyzer(sparse=True, with_group=False):
return sorting_analyzer


@pytest.fixture(scope="session")
@pytest.fixture(scope="module")
def sorting_analyzer_dense_for_export():
return make_sorting_analyzer(sparse=False)


@pytest.fixture(scope="session")
@pytest.fixture(scope="module")
def sorting_analyzer_with_group_for_export():
return make_sorting_analyzer(sparse=False, with_group=True)


@pytest.fixture(scope="session")
@pytest.fixture(scope="module")
def sorting_analyzer_sparse_for_export():
return make_sorting_analyzer(sparse=True)

Expand Down

0 comments on commit e0a47a2

Please sign in to comment.