blob: dfeaad545e5f633140667505a456a9c261c4ccaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
language: python
python:
- "2.6"
- "2.7"
# - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details)
git:
# a higher depth is needed for most of the tests - must be high enough to not actually be shallow
# as we clone our own repository in the process
depth: 99999
install:
- git submodule update --init --recursive
- git fetch --tags
- pip install coveralls
script:
- nosetests -v --with-coverage
after_success:
- coveralls
|