File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1437,6 +1437,9 @@ def test_drop_table(self):
1437
1437
# @unittest.skip("skip")
1438
1438
def test_basic_missing_file_permissions (self ):
1439
1439
""""""
1440
+ if os .name == 'nt' :
1441
+ return unittest .skip ('Skipped because it is POSIX only test' )
1442
+
1440
1443
fname = self .id ().split ('.' )[3 ]
1441
1444
backup_dir = os .path .join (self .tmp_path , module_name , fname , 'backup' )
1442
1445
node = self .make_simple_node (
@@ -1481,6 +1484,9 @@ def test_basic_missing_file_permissions(self):
1481
1484
# @unittest.skip("skip")
1482
1485
def test_basic_missing_dir_permissions (self ):
1483
1486
""""""
1487
+ if os .name == 'nt' :
1488
+ return unittest .skip ('Skipped because it is POSIX only test' )
1489
+
1484
1490
fname = self .id ().split ('.' )[3 ]
1485
1491
backup_dir = os .path .join (self .tmp_path , module_name , fname , 'backup' )
1486
1492
node = self .make_simple_node (
You can’t perform that action at this time.
0 commit comments