mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-27 07:13:59 +00:00
20 lines
511 B
YAML
20 lines
511 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_network.py tests/test_strformat.py"
|
|
# do not send emails of broken builds
|
|
notifications:
|
|
email: false
|