summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c73c0791edae10859e698f076114378fa7d08037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "pypy"
install:
  - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install -r py26-requirements.txt; fi
  - pip install -r requirements.txt
  - pip install coveralls --use-mirrors
  #- pip install nose  # installed by Travis by default already
script:
  - nosetests --with-coverage --cover-erase --cover-package=times
after_success:
  - coveralls