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 236a217 commit b546f01Copy full SHA for b546f01
tests/test_ext.py
@@ -2,6 +2,7 @@
2
import shutil
3
import tempfile
4
import unittest
5
+import pytest
6
7
import cwltool.expression as expr
8
import cwltool.factory
@@ -39,6 +40,8 @@ def test_listing_v1_0(self):
39
40
# # Default behavior in 1.1 will be no expansion
41
# self.assertEquals(main([get_data('tests/wf/listing_v1_1.cwl'), get_data('tests/listing-job.yml')]), 1)
42
43
+@pytest.mark.skipif(os.name == 'nt',
44
+ reason="InplaceUpdate uses symlinks,does not run on windows without admin privileges")
45
class TestInplaceUpdate(unittest.TestCase):
46
47
def test_updateval(self):
0 commit comments