Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Condense distance matrix that was not. Pep8 + test pass #1084

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions scripts/tests/test_connectivity_reorder_rois.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

from scilpy import SCILPY_HOME
from scilpy.io.fetcher import fetch_data, get_testing_files_dict
from scipy.cluster.hierarchy import ClusterWarning
from warnings import simplefilter

# If they already exist, this only takes 5 seconds (check md5sum)
fetch_data(get_testing_files_dict(), keys=['connectivity.zip'])
Expand All @@ -18,6 +20,7 @@ def test_help_option(script_runner):


def test_execution_compute_OLO(script_runner, monkeypatch):
simplefilter("ignore", ClusterWarning)
monkeypatch.chdir(os.path.expanduser(tmp_dir.name))
in_sc = os.path.join(SCILPY_HOME, 'connectivity',
'sc_norm.npy')
Expand Down
Loading