mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-14 09:33:09 +00:00
18 lines
318 B
YAML
18 lines
318 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
# whitelist of git branches to build
|
|
branches:
|
|
only:
|
|
- master
|
|
# 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
|