django-defender/.travis.yml
2015-01-02 14:52:58 -05:00

30 lines
526 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
env:
- DJANGO=Django==1.4.16
- DJANGO=Django==1.6.8
- DJANGO=Django==1.7.1
services:
- redis-server
install:
- pip install -q $DJANGO
- pip install coveralls
- pip install mockredispy
- python setup.py develop
script:
- PYTHONPATH=$PYTHONPATH:$PWD coverage run --source=defender $(which django-admin.py) test defender --settings=defender.travis_settings
- coverage report -m
after_success:
- coveralls --verbose