blob: d1f4042ac8b5f301b31d8c5cc427815acf4c28e4 (
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"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install -r py26-requirements.txt; fi
- pip install -r requirements.txt
- pip install coveralls
- pip install pytz
script:
- nosetests --with-coverage --cover-erase --cover-package=times
after_success:
- coveralls
|