nsupdate.info/.travis.yml
Thomas Waldmann 329b6b5abf travis: do not run dnstools tests in parallel
also: only run coverage and pep8 once
2013-12-13 04:06:59 +01:00

30 lines
714 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "pypy"
env:
global:
- SECRET_KEY=justfortravis
- DNS_RESOLVER_TIMEOUT=15.0
- DNS_UPDATE_TIMEOUT=30.0
- TEST_OPTS="-k 'not dnstools and not ddns_client'"
- COVERAGE=""
matrix:
- DJANGO=1.5.5
- DJANGO=1.6.1
include:
- python: "2.7"
env: DJANGO=1.6.1 COVERAGE="coverage run -m" TEST_OPTS="--pep8"
install:
- "pip install --use-mirrors Django==$DJANGO"
- "pip install --use-mirrors -e ."
- "pip install --use-mirrors coveralls"
script: "$COVERAGE py.test $TEST_OPTS"
after_success:
- coveralls
notifications:
email:
recipients:
- info@nsupdate.info