We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055772b commit 77c5964Copy full SHA for 77c5964
tests/test_system_tests.py
@@ -2,7 +2,7 @@
2
import shutil
3
import tempfile
4
from subprocess import DEVNULL
5
-from unittest import TestCase
+from unittest import TestCase, skipIf
6
7
import cwltool.factory
8
import pkg_resources
@@ -15,6 +15,8 @@ class TestConsoleScripts(TestCase):
15
here = os.path.abspath(os.path.dirname(__file__))
16
repo_like_dir = os.path.join(here, 'repo-like')
17
18
+ @skipIf("TRAVIS_IGNORE_DOCKER" in os.environ and os.environ["TRAVIS_IGNORE_DOCKER"] == "true",
19
+ "Skipping this test on Travis CI.")
20
def test_repo2cwl(self):
21
output_dir = tempfile.mkdtemp()
22
print(f'output directory:\t{output_dir}')
0 commit comments