nsupdate.info/.travis.yml

30 lines
714 B
YAML
Raw Normal View History

2013-11-19 06:09:20 +01:00
language: python
python:
- "2.6"
2013-11-19 06:09:20 +01:00
- "2.7"
- "pypy"
2013-12-13 02:40:39 +01:00
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=""
2013-12-13 02:40:39 +01:00
matrix:
include:
- python: "2.7"
env: DJANGO=1.6.1 COVERAGE="coverage run -m" TEST_OPTS="--pep8"
2013-12-13 04:14:06 +01:00
- DJANGO=1.5.5
- DJANGO=1.6.1
2013-11-19 06:09:20 +01:00
install:
2013-12-13 02:40:39 +01:00
- "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
2013-11-19 06:35:57 +01:00
notifications:
email:
recipients:
- info@nsupdate.info