diff options
| author | stuertz <js@contact.de> | 2017-03-27 11:44:14 +0200 |
|---|---|---|
| committer | stuertz <js@contact.de> | 2017-03-27 11:44:14 +0200 |
| commit | bcdffc46e3993d7743b90982009eec49df667ab4 (patch) | |
| tree | c3fe7780cdac5e28fcede8bc720d8cb666311a34 /gitdb/test/db | |
| parent | 891ac5126540dcb087242f9bb0cadd02ca021324 (diff) | |
| download | gitdb-bcdffc46e3993d7743b90982009eec49df667ab4.tar.gz | |
fixed to be py26 compat
Diffstat (limited to 'gitdb/test/db')
| -rw-r--r-- | gitdb/test/db/test_pack.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gitdb/test/db/test_pack.py b/gitdb/test/db/test_pack.py index e6c2032..f6e2751 100644 --- a/gitdb/test/db/test_pack.py +++ b/gitdb/test/db/test_pack.py @@ -16,14 +16,16 @@ import os import random import sys -from unittest import skipIf +from nose.plugins.skip import SkipTest class TestPackDB(TestDBBase): - @skipIf(sys.platform == "win32", "not supported on windows currently") @with_rw_directory @with_packs_rw def test_writing(self, path): + if sys.platform == "win32": + raise SkipTest("FIXME: Currently fail on windows") + pdb = PackedDB(path) # on demand, we init our pack cache |
