linkchecker/.travis.yml
Marius Gedminas 3fc44c30db Recognize the existence of Python 3.7
(The tests don't pass yet, see #205.)
2019-09-05 11:16:30 +03:00

22 lines
373 B
YAML

language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
# command to install dependencies
install:
- pip install tox-travis coveralls
# command to run tests
script:
- tox
# do not send emails of broken builds
notifications:
email: false
after_script:
- coveralls
matrix:
allow_failures:
- python: "3.5"
- python: "3.6"
- python: "3.7"