|
6 | 6 | from isatools.convert import sampletab2isatab |
7 | 7 | from isatools.tests import utils |
8 | 8 |
|
9 | | -SLOW_TESTS = int(os.getenv("SLOW_TESTS", "0")) |
10 | | - |
11 | 9 |
|
12 | 10 | def setUpModule(): |
13 | 11 | if not os.path.exists(utils.DATA_DIR): |
@@ -35,17 +33,16 @@ def test_sampletab2isatab_test_2(self): |
35 | 33 | with open(os.path.join(self._sampletab_dir, "test2.txt")) as sampletab_fp: |
36 | 34 | sampletab2isatab.convert(source_sampletab_fp=sampletab_fp, target_dir=self._tmp_dir) |
37 | 35 |
|
38 | | - @unittest.skipIf(not SLOW_TESTS, "slow") |
| 36 | + @unittest.skip("deprecated method pending deletion") |
39 | 37 | def test_sampletab2isatab_GSB_3(self): |
40 | 38 | with open(os.path.join(self._sampletab_dir, "GSB-3.txt")) as sampletab_fp: |
41 | 39 | sampletab2isatab.convert(source_sampletab_fp=sampletab_fp, target_dir=self._tmp_dir) |
42 | 40 |
|
43 | | - @unittest.skipIf(not SLOW_TESTS, "slow") |
| 41 | + @unittest.skip("deprecated method pending deletion") |
44 | 42 | def test_sampletab2isatab_GSB_537(self): |
45 | 43 | with open(os.path.join(self._sampletab_dir, "GSB-537.txt")) as sampletab_fp: |
46 | 44 | sampletab2isatab.convert(source_sampletab_fp=sampletab_fp, target_dir=self._tmp_dir) |
47 | 45 |
|
48 | | - @unittest.skip("slow") |
49 | 46 | def test_sampletab2isatab_GSB_718(self): |
50 | 47 | with open(os.path.join(self._sampletab_dir, "GSB-718.txt")) as sampletab_fp: |
51 | 48 | sampletab2isatab.convert(source_sampletab_fp=sampletab_fp, target_dir=self._tmp_dir) |
0 commit comments