##// END OF EJS Templates
skip permission -> 403 test on Windows...
Min RK -
Show More
@@ -3,6 +3,7 b''
3 3 from __future__ import print_function
4 4
5 5 import os
6 import sys
6 7 import time
7 8
8 9 from nose import SkipTest
@@ -134,6 +135,8 b' class TestFileContentsManager(TestCase):'
134 135 if hasattr(os, 'getuid'):
135 136 if os.getuid() == 0:
136 137 raise SkipTest("Can't test permissions as root")
138 if sys.platform.startswith('win'):
139 raise SkipTest("Can't test permissions on Windows")
137 140
138 141 with TemporaryDirectory() as td:
139 142 cm = FileContentsManager(root_dir=td)
General Comments 0
You need to be logged in to leave comments. Login now