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