summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 380754b8ff0a0a9bcec9844a57fcebb4ca2a19fe (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 -v tests/test_*.py && coverage report -m