Revision e5b429c08a5362f2fc7208990669821b418fb51e authored by Jakob Vanhoefer on 12 January 2021, 12:52:37 UTC, committed by Jakob Vanhoefer on 12 January 2021, 12:52:37 UTC
1 parent 6cc23ea
Raw File
.travis.yml
language: python
python:
  - "3.6"

install:
  - pip install .
  - pip install coveralls

script:
- coverage run -m unittest discover tests

after_success: coveralls
back to top