Skip to content

Commit bcdffc4

Browse files
committed
fixed to be py26 compat
1 parent 891ac51 commit bcdffc4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

gitdb/test/db/test_pack.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,16 @@
1616
import random
1717
import sys
1818

19-
from unittest import skipIf
19+
from nose.plugins.skip import SkipTest
2020

2121
class TestPackDB(TestDBBase):
2222

23-
@skipIf(sys.platform == "win32", "not supported on windows currently")
2423
@with_rw_directory
2524
@with_packs_rw
2625
def test_writing(self, path):
26+
if sys.platform == "win32":
27+
raise SkipTest("FIXME: Currently fail on windows")
28+
2729
pdb = PackedDB(path)
2830

2931
# on demand, we init our pack cache

0 commit comments

Comments
 (0)