We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 891ac51 commit bcdffc4Copy full SHA for bcdffc4
gitdb/test/db/test_pack.py
@@ -16,14 +16,16 @@
16
import random
17
import sys
18
19
-from unittest import skipIf
+from nose.plugins.skip import SkipTest
20
21
class TestPackDB(TestDBBase):
22
23
- @skipIf(sys.platform == "win32", "not supported on windows currently")
24
@with_rw_directory
25
@with_packs_rw
26
def test_writing(self, path):
+ if sys.platform == "win32":
27
+ raise SkipTest("FIXME: Currently fail on windows")
28
+
29
pdb = PackedDB(path)
30
31
# on demand, we init our pack cache
0 commit comments