Skip to content

Commit

Permalink
Set compute_amplitudes/pc_features to False in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alejoe91 committed Jul 3, 2024
1 parent 451a1d4 commit 42a6215
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/spikeinterface/exporters/tests/test_export_to_phy.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ def test_export_to_phy_metrics(sorting_analyzer_sparse_for_export, create_cache_
export_to_phy(
sorting_analyzer,
output_folder,
compute_pc_features=True,
compute_amplitudes=True,
compute_pc_features=False,
compute_amplitudes=False,
n_jobs=1,
chunk_size=10000,
progress_bar=True,
Expand All @@ -119,8 +119,8 @@ def test_export_to_phy_metrics(sorting_analyzer_sparse_for_export, create_cache_
export_to_phy(
sorting_analyzer,
output_folder,
compute_pc_features=True,
compute_amplitudes=True,
compute_pc_features=False,
compute_amplitudes=False,
n_jobs=1,
chunk_size=10000,
progress_bar=True,
Expand All @@ -138,8 +138,8 @@ def test_export_to_phy_metrics(sorting_analyzer_sparse_for_export, create_cache_
export_to_phy(
sorting_analyzer,
output_folder,
compute_pc_features=True,
compute_amplitudes=True,
compute_pc_features=False,
compute_amplitudes=False,
n_jobs=1,
chunk_size=10000,
progress_bar=True,
Expand Down

0 comments on commit 42a6215

Please sign in to comment.