mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-19 03:51:07 +00:00
21 lines
582 B
YAML
21 lines
582 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
|
|
- pip install pyftpdlib
|
|
# command to run tests
|
|
script: make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/cache/test_*.py tests/configuration/test_*.py tests/logger/test_*.py"
|
|
# do not send emails of broken builds
|
|
notifications:
|
|
email: false
|