File tree 5 files changed +9
-7
lines changed
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
[submodule "gitdb "]
2
2
path = git/ext/gitdb
3
- url = http://github.com/gitpython-developers/gitdb.git
3
+ url = http://github.com/gitpython-developers/gitdb.git
Original file line number Diff line number Diff line change @@ -11,9 +11,11 @@ The object database implementation is optimized for handling large quantities of
11
11
REQUIREMENTS
12
12
============
13
13
14
- * Git ( tested with 1.7 .3.2 )
14
+ * Git ( tested with 1.8 .3.4 )
15
15
* Python Nose - used for running the tests
16
- * Mock by Michael Foord used for tests. Requires 0.5
16
+ * Tested with nose 1.3.0
17
+ * Mock by Michael Foord used for tests
18
+ * Tested with 1.0.1
17
19
18
20
INSTALL
19
21
=======
Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ class TestBase(TestCase):
227
227
"""
228
228
229
229
@classmethod
230
- def setUpAll (cls ):
230
+ def setUp (cls ):
231
231
"""
232
232
Dynamically add a read-only repository to our actual type. This way
233
233
each test type has its own repository
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ class TestBigRepoR(TestBase):
51
51
#} END invariants
52
52
53
53
@classmethod
54
- def setUpAll (cls ):
54
+ def setUp (cls ):
55
55
super (TestBigRepoR , cls ).setUpAll ()
56
56
repo_path = resolve_or_fail (k_env_git_repo )
57
57
cls .gitrorepo = Repo (repo_path , odbt = GitCmdObjectDB )
@@ -64,7 +64,7 @@ class TestBigRepoRW(TestBigRepoR):
64
64
Provides ``self.gitrwrepo`` and ``self.puregitrwrepo``"""
65
65
66
66
@classmethod
67
- def setUpAll (cls ):
67
+ def setUp (cls ):
68
68
super (TestBigRepoRW , cls ).setUpAll ()
69
69
dirname = tempfile .mktemp ()
70
70
os .mkdir (dirname )
Original file line number Diff line number Diff line change 19
19
class TestGit (TestBase ):
20
20
21
21
@classmethod
22
- def setUpAll (cls ):
22
+ def setUp (cls ):
23
23
super (TestGit , cls ).setUpAll ()
24
24
cls .git = Git (cls .rorepo .working_dir )
25
25
You can’t perform that action at this time.
0 commit comments