Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2f2fe4e

Browse files
committedNov 14, 2014
Merge branch 'py2n3'
* python 3 compatibility * all tests work in py2.6, 2.7, 3.3, 3.4
2 parents 81707c6 + 0dcec5a commit 2f2fe4e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1767
-1826
lines changed
 

‎.gitmodules

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[submodule "async"]
2-
path = gitdb/ext/async
3-
url = https://github.com/gitpython-developers/async.git
41
[submodule "smmap"]
52
path = gitdb/ext/smmap
63
url = https://github.com/Byron/smmap.git

‎.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ python:
33
- "2.6"
44
- "2.7"
55
- "3.3"
6+
- "3.4"
67
# - "pypy" - won't work as smmap doesn't work (see smmap/.travis.yml for details)
78

8-
script: nosetests
9+
git:
10+
# a higher depth is needed for one of the tests - lets fet
11+
depth: 1000
12+
install:
13+
- pip install coveralls
14+
script:
15+
- nosetests -v
16+
after_success:
17+
- coveralls
18+

0 commit comments

Comments
 (0)
Please sign in to comment.