2013-11-19 06:09:20 +01:00
|
|
|
language: python
|
|
|
|
python:
|
2013-12-12 01:27:36 +01:00
|
|
|
- "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
|
|
|
|
matrix:
|
|
|
|
- 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"
|
2013-11-21 09:45:14 +01:00
|
|
|
script: "coverage run -m py.test --pep8"
|
2013-11-21 04:46:00 +01:00
|
|
|
after_success:
|
|
|
|
- coveralls
|
2013-11-19 06:35:57 +01:00
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
recipients:
|
|
|
|
- info@nsupdate.info
|