15 lines
366 B
YAML
15 lines
366 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "pypy"
|
|
install:
|
|
- "pip install --upgrade --use-mirrors -e ."
|
|
- "pip install coveralls"
|
|
env: SECRET_KEY=justfortravis
|
|
script: "coverage run --source nsupdate --omit '*/migrations/*,*/_tests/*' -m py.test --pep8"
|
|
after_success: coveralls
|
|
notifications:
|
|
email:
|
|
recipients:
|
|
- info@nsupdate.info
|