summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 33784ebfab003361b72ad52a6ff83befffac596f (plain)
1
2
3
4
5
6
7
8
9
10
language: python
python:
  - "3.2"
  - "3.3"
# command to install dependencies
install:
  - pip install -r requirements.txt
  - pip install coverage
# command to run tests
script: coverage run -m unittest discover -s tests -v && coverage report -m