mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-18 11:31:06 +00:00
21 lines
542 B
YAML
21 lines
542 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
# whitelist of git branches to build
|
|
branches:
|
|
only:
|
|
- master
|
|
# install required system packages
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- python-dev
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install pyftpdlib pytest-xdist
|
|
# command to run tests
|
|
script: make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/configuration/test_*.py tests/logger/test_*.py tests/checker/test_httpbin.py"
|
|
# do not send emails of broken builds
|
|
notifications:
|
|
email: false
|