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 b566313 commit bf64831Copy full SHA for bf64831
tests/test_examples.py
@@ -7,6 +7,8 @@
7
8
from io import StringIO
9
10
+from cwltool.utils import onWindows
11
+
12
try:
13
reload
14
except:
@@ -563,6 +565,9 @@ def test_no_js_console(self):
563
565
self.assertNotIn("[err] Error message", output)
564
566
567
568
+@pytest.mark.skipif(onWindows(),
569
+ reason="Instance of cwltool is used, on Windows it invokes a default docker container"
570
+ "which is not supported on AppVeyor")
571
class TestCache(TestCmdLine):
572
def test_wf_without_container(self):
573
test_file = "hello-workflow.cwl"
0 commit comments