File: skip_online_tests.patch

package info (click to toggle)
neo 0.14.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,400 kB
  • sloc: python: 45,316; makefile: 92; sh: 16
file content (25 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (2)
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,