Skip to content

Commit 77c5964

Browse files
committed
rm test with docker from non-docker vms
1 parent 055772b commit 77c5964

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_system_tests.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import shutil
33
import tempfile
44
from subprocess import DEVNULL
5-
from unittest import TestCase
5+
from unittest import TestCase, skipIf
66

77
import cwltool.factory
88
import pkg_resources
@@ -15,6 +15,8 @@ class TestConsoleScripts(TestCase):
1515
here = os.path.abspath(os.path.dirname(__file__))
1616
repo_like_dir = os.path.join(here, 'repo-like')
1717

18+
@skipIf("TRAVIS_IGNORE_DOCKER" in os.environ and os.environ["TRAVIS_IGNORE_DOCKER"] == "true",
19+
"Skipping this test on Travis CI.")
1820
def test_repo2cwl(self):
1921
output_dir = tempfile.mkdtemp()
2022
print(f'output directory:\t{output_dir}')

0 commit comments

Comments
 (0)