39eb5e992e
drop python 2.6 (not supported by django any more) switch from django-registration (dead and broken) to django-registration-redux, fix issue #116 remove south dependency (and south migrations) create new initial migration with django's builtin migrations update docs
35 lines
838 B
YAML
35 lines
838 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "pypy"
|
|
- "3.3"
|
|
- "3.4"
|
|
env:
|
|
global:
|
|
- SECRET_KEY=justfortravis
|
|
- DNS_RESOLVER_TIMEOUT=15.0
|
|
- DNS_UPDATE_TIMEOUT=30.0
|
|
- TEST_K="not dnstools and not ddns_client"
|
|
- TEST_OPTS=""
|
|
- COVERAGE=""
|
|
matrix:
|
|
- DJANGO=1.7.0
|
|
matrix:
|
|
exclude:
|
|
- python: "2.7"
|
|
env: DJANGO=1.7.0
|
|
include:
|
|
- python: "2.7"
|
|
env: DJANGO=1.7.0 COVERAGE="coverage run -m" TEST_K="" TEST_OPTS="--pep8"
|
|
install:
|
|
- "pip install --use-mirrors Django==$DJANGO"
|
|
- "pip install --use-mirrors -r requirements.d/travis.txt"
|
|
- "pip install --use-mirrors -e ."
|
|
script: $COVERAGE py.test $TEST_OPTS -k "$TEST_K" -m "not requires_sequential"
|
|
after_success:
|
|
- coveralls
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- info@nsupdate.info
|