23 lines
459 B
YAML
23 lines
459 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "pypy"
|
|
env:
|
|
global:
|
|
- SECRET_KEY=justfortravis
|
|
matrix:
|
|
- DJANGO=1.5.5
|
|
- DJANGO=1.6.1
|
|
install:
|
|
- "pip install --use-mirrors Django==$DJANGO"
|
|
- "pip install --use-mirrors -e ."
|
|
- "pip install --use-mirrors coveralls"
|
|
script: "coverage run -m py.test --pep8"
|
|
after_success:
|
|
- coveralls
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- info@nsupdate.info
|