Skip to content

Commit b3a9172

Browse files
Update conftest.py
1 parent 2af6211 commit b3a9172

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def data_dir():
1818
data_path.mkdir(exist_ok=True)
1919
download_cached_inputs(data_path)
2020
cached_outputs = data_path.joinpath('test_outputs')
21-
cached_outputs_url = 'https://www.suite2p.org/static/test_data/test_outputs.zip'
21+
cached_outputs_url = 'https://osf.io/download/67f007dba7eb86d7808b8832/'
2222
if not os.path.exists(cached_outputs):
2323
extract_zip(data_path.joinpath('test_outputs.zip'), cached_outputs_url, data_path)
2424
return data_path
@@ -32,7 +32,7 @@ def test_ops(tmpdir, data_dir):
3232
def download_cached_inputs(data_path):
3333
""" Downloads test_input data if not present on machine. This function was created so it can also be used by scripts/generate_test_data.py."""
3434
cached_inputs = data_path.joinpath('test_inputs')
35-
cached_inputs_url = 'https://www.suite2p.org/static/test_data/test_inputs.zip'
35+
cached_inputs_url = 'https://osf.io/download/67f0087b1ec6658af9b25a70/'
3636
if not os.path.exists(cached_inputs):
3737
extract_zip(data_path.joinpath('test_inputs.zip'), cached_inputs_url, data_path)
3838

0 commit comments

Comments
 (0)