From c3bea9fe0ee6a4a7ea7868022b707819dc7e9600 Mon Sep 17 00:00:00 2001 From: Luigi Petrucco Date: Tue, 3 Dec 2024 16:47:24 +0100 Subject: [PATCH] revert erroneous commit --- neo/test/rawiotest/common_rawio_test.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/neo/test/rawiotest/common_rawio_test.py b/neo/test/rawiotest/common_rawio_test.py index 10c7eb2fc..488cb9fbf 100644 --- a/neo/test/rawiotest/common_rawio_test.py +++ b/neo/test/rawiotest/common_rawio_test.py @@ -66,11 +66,11 @@ def setUpClass(cls): """ cls.shortname = cls.rawioclass.__name__.lower().replace("rawio", "") - # if HAVE_DATALAD and cls.use_network: - # for remote_path in cls.entities_to_download: - # download_dataset(repo=repo_for_test, remote_path=remote_path) - # else: - # raise unittest.SkipTest("Requires datalad download of data from the web") + if HAVE_DATALAD and cls.use_network: + for remote_path in cls.entities_to_download: + download_dataset(repo=repo_for_test, remote_path=remote_path) + else: + raise unittest.SkipTest("Requires datalad download of data from the web") def get_local_base_folder(self): return get_local_testing_data_folder()