summaryrefslogtreecommitdiff
path: root/git/test/performance/lib.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2014-02-10 19:37:33 +0100
committerSebastian Thiel <byronimo@gmail.com>2014-02-10 19:37:33 +0100
commite4654ca3a17832a7d479e5d8e3296f004c632183 (patch)
treeee5e504920bc918dabdf1b17530135730c6ccabc /git/test/performance/lib.py
parentf573b6840509bf41be822ab7ed79e0a776005133 (diff)
downloadgitpython-e4654ca3a17832a7d479e5d8e3296f004c632183.tar.gz
Adjusted required versions of pre-requisites, now the majority of the tests work
Diffstat (limited to 'git/test/performance/lib.py')
-rw-r--r--git/test/performance/lib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/performance/lib.py b/git/test/performance/lib.py
index 778a6c7d..89105334 100644
--- a/git/test/performance/lib.py
+++ b/git/test/performance/lib.py
@@ -51,7 +51,7 @@ class TestBigRepoR(TestBase):
#} END invariants
@classmethod
- def setUpAll(cls):
+ def setUp(cls):
super(TestBigRepoR, cls).setUpAll()
repo_path = resolve_or_fail(k_env_git_repo)
cls.gitrorepo = Repo(repo_path, odbt=GitCmdObjectDB)
@@ -64,7 +64,7 @@ class TestBigRepoRW(TestBigRepoR):
Provides ``self.gitrwrepo`` and ``self.puregitrwrepo``"""
@classmethod
- def setUpAll(cls):
+ def setUp(cls):
super(TestBigRepoRW, cls).setUpAll()
dirname = tempfile.mktemp()
os.mkdir(dirname)