nsupdate.info/.travis.yml
Thomas Waldmann ce4a6b9ffd py 3.6 testing fixed via recent defusedxml release, fixes #298
defusedxml 0.5 fixes the py 3.6 issues.
2017-02-10 15:35:09 +01:00

51 lines
867 B
YAML

sudo: required
language: python
os: linux
dist: trusty
python:
- "2.7"
- "pypy"
- "3.4"
- "3.5"
- "3.6"
env:
global:
- SECRET_KEY=justfortravis
- DNS_RESOLVER_TIMEOUT=15.0
- DNS_UPDATE_TIMEOUT=30.0
- TEST_K="not ddns_client"
- TEST_OPTS=""
- COVERAGE=""
matrix:
- DJANGO=1.8.1
matrix:
exclude:
- python: "2.7"
env: DJANGO=1.8.1
- python: "3.6"
env: DJANGO=1.8.1
include:
- python: "2.7"
env: DJANGO=1.8.1 COVERAGE="coverage run -m" TEST_K="not ddns_client" TEST_OPTS="--pep8"
- python: "3.6"
env: DJANGO=1.8.17
install:
- ./scripts/travis/install.sh
script: $COVERAGE py.test $TEST_OPTS -k "$TEST_K" -m "not requires_sequential"
after_success:
- coveralls
notifications:
email:
recipients:
- info@nsupdate.info