summaryrefslogtreecommitdiff
path: root/git/test/performance/lib.py
diff options
context:
space:
mode:
Diffstat (limited to 'git/test/performance/lib.py')
-rw-r--r--git/test/performance/lib.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/git/test/performance/lib.py b/git/test/performance/lib.py
index 9b6f45bf..e92e2b2d 100644
--- a/git/test/performance/lib.py
+++ b/git/test/performance/lib.py
@@ -49,12 +49,14 @@ class TestBigRepoR(TestBase):
repo_path = os.environ.get(k_env_git_repo)
if repo_path is None:
- logging.info("You can set the %s environment variable to a .git repository of your choice - defaulting to the gitpython repository", k_env_git_repo)
+ logging.info(
+ "You can set the %s environment variable to a .git repository of your choice - defaulting to the gitpython repository", k_env_git_repo)
repo_path = os.path.dirname(__file__)
# end set some repo path
self.gitrorepo = Repo(repo_path, odbt=GitCmdObjectDB)
self.puregitrorepo = Repo(repo_path, odbt=GitDB)
+
class TestBigRepoRW(TestBigRepoR):
"""As above, but provides a big repository that we can write to.