Skip to content

Commit b546f01

Browse files
committed
muting InplaceUpdate testcases on windows platform with pytest
1 parent 236a217 commit b546f01

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_ext.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import shutil
33
import tempfile
44
import unittest
5+
import pytest
56

67
import cwltool.expression as expr
78
import cwltool.factory
@@ -39,6 +40,8 @@ def test_listing_v1_0(self):
3940
# # Default behavior in 1.1 will be no expansion
4041
# self.assertEquals(main([get_data('tests/wf/listing_v1_1.cwl'), get_data('tests/listing-job.yml')]), 1)
4142

43+
@pytest.mark.skipif(os.name == 'nt',
44+
reason="InplaceUpdate uses symlinks,does not run on windows without admin privileges")
4245
class TestInplaceUpdate(unittest.TestCase):
4346

4447
def test_updateval(self):

0 commit comments

Comments
 (0)