Skip to content

Commit 8068528

Browse files
committed
Still fight for travis.
1 parent 6b27a40 commit 8068528

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

neo/test/iotest/common_io_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ def setUp(self):
104104
self.files_to_test = [self.get_local_path(e) for e in self.entities_to_test]
105105
else:
106106
self.files_to_test = []
107+
raise unittest.SkipTest("Requires datalad download of data from the web")
107108

108109
def create_local_dir_if_not_exists(self):
109110
'''

neo/test/rawiotest/common_rawio_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ def setUp(self):
6363
if HAVE_DATALAD:
6464
for remote_path in self.entities_to_download:
6565
download_dataset(repo=repo_for_test, remote_path=remote_path)
66+
else:
67+
raise unittest.SkipTest("Requires datalad download of data from the web")
6668

6769
def get_local_base_folder(self):
6870
return get_local_testing_data_folder()

0 commit comments

Comments
 (0)