blob: a562dee5bf949d4bd7aad643484dc860907766e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- salt-3000.2.orig/tests/unit/utils/test_verify.py 2020-04-29 16:57:02.775635698 -0700
+++ salt-3000.2/tests/unit/utils/test_verify.py 2020-04-29 16:57:58.042282147 -0700
@@ -324,6 +324,7 @@
self.assertTrue(os.path.exists(path))
+@skipIf(True, "breaks under sandbox")
class TestCleanPath(TestCase):
'''
salt.utils.clean_path works as expected
@@ -366,6 +367,7 @@
raise ctypes.WinError()
+@skipIf(True, "breaks under sandbox")
@skipIf(six.PY2 and salt.utils.platform.is_windows(), 'Skipped on windows py2')
class TestCleanPathLink(TestCase):
'''
|