1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: Skip tests accessing network
Author: Andreas Tille <tille@debian.org>
Last-Update: 2022-02-17
Forwarded: not-needed
--- neo.orig/neo/test/rawiotest/test_maxwellrawio.py
+++ neo/neo/test/rawiotest/test_maxwellrawio.py
@@ -4,6 +4,7 @@
from neo.test.rawiotest.common_rawio_test import BaseTestRawIO
+@unittest.skip(reason='Tries to download something')
class TestMaxwellRawIO(
BaseTestRawIO,
unittest.TestCase,
--- neo.orig/neo/test/iotest/test_maxwellio.py
+++ neo/neo/test/iotest/test_maxwellio.py
@@ -7,6 +7,7 @@
from neo.rawio.maxwellrawio import auto_install_maxwell_hdf5_compression_plugin
+@unittest.skip(reason='Tries to download something')
class TestMaxwellIO(
BaseTestIO,
unittest.TestCase,
|