blob: 0a2906dc2cf0c553a9455a147194ca90a2ebcbf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
language: python
python:
- "2.6"
- "2.7"
# - "pypy" - won't work as smmap doesn't work (see gitdb/.travis.yml for details)
install:
- git submodule update --init --recursive
- git fetch --tags
- pip install coveralls
script:
- nosetests --with-coverage
# after_success: as long as we are not running smoothly ... give it the cover treatment every time
- coveralls
|