diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-06-06 20:00:07 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-06-06 20:00:45 +0200 |
commit | 56a004bb8a08c216fe9764be866e6c00f079e257 (patch) | |
tree | df1d8c5121813aa427e9614524b4f71eeb445b2f | |
parent | 79b9dbd63f3b1ec3f1ae9269ff44f9c07eeab9fa (diff) | |
download | gitpython-56a004bb8a08c216fe9764be866e6c00f079e257.tar.gz |
Moved performance commit object test into the respective subfolder to indicate what it tests
-rw-r--r-- | git/test/performance/objects/__init__.py | 1 | ||||
-rw-r--r-- | git/test/performance/objects/test_commit.py (renamed from git/test/performance/test_commit.py) | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/git/test/performance/objects/__init__.py b/git/test/performance/objects/__init__.py new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/git/test/performance/objects/__init__.py @@ -0,0 +1 @@ + diff --git a/git/test/performance/test_commit.py b/git/test/performance/objects/test_commit.py index decc308e..685fba2f 100644 --- a/git/test/performance/test_commit.py +++ b/git/test/performance/objects/test_commit.py @@ -4,7 +4,7 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php -from lib import * +from git.test.performance.lib import TestBigRepoRW from git import * from git.base import IStream from git.test.objects.test_commit import assert_commit_serialization |