nsupdate.info/.travis.yml

43 lines
806 B
YAML
Raw Normal View History

sudo: required
2013-11-19 06:09:20 +01:00
language: python
os: linux
2013-12-13 02:40:39 +01:00
env:
global:
- SECRET_KEY=justfortravis
- DNS_RESOLVER_TIMEOUT=15.0
- DNS_UPDATE_TIMEOUT=30.0
- TEST_K="not ddns_client"
2013-12-13 04:46:14 +01:00
- TEST_OPTS=""
- COVERAGE=""
2013-12-13 04:20:57 +01:00
matrix:
include:
- python: "3.5"
dist: xenial
env: DJANGO=2.2
2017-01-21 02:08:04 +01:00
- python: "3.6"
dist: xenial
env: DJANGO=2.2
- python: "3.7"
dist: xenial
2019-04-03 18:16:14 +02:00
env: DJANGO=2.2
- python: "3.8"
dist: xenial
env: DJANGO=2.2 COVERAGE="coverage run -m" TEST_K="not ddns_client" TEST_OPTS="--pep8"
2013-11-19 06:09:20 +01:00
install:
- ./scripts/travis/install.sh
script: $COVERAGE py.test $TEST_OPTS -k "$TEST_K" -m "not requires_sequential"
after_success:
- coveralls
2013-11-19 06:35:57 +01:00
notifications:
email:
recipients:
- info@nsupdate.info