linkchecker/.travis.yml
2013-12-11 07:25:36 +01:00

20 lines
572 B
YAML

language:
- python
python:
- "2.7"
# whitelist of git branches to build
branches:
only:
- master
# install required programs
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-dev qt4-dev-tools
# command to install dependencies
install:
- pip install -r requirements.txt --use-mirrors
# command to run tests
script: make test PYTESTOPTS="--tb=short" TESTS="tests/test_cgi.py tests/test_clamav.py tests/test_console.py tests/test_network.py tests/test_strformat.py"
# do not send emails of broken builds
notifications:
email: false