summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c0e5100ae469fa3f546defd6c66e4bb8bfbb52b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
language: python
python:
  - "3.4"
  - "3.6"
  - "3.7"
  - "3.8"
# 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