django-defender/.travis.yml
2015-01-01 11:09:33 -05:00

24 lines
474 B
YAML

language: python
python:
- 2.7
- 3.3
- 3.4
env:
- DJANGO=Django==1.4.16
- DJANGO=Django==1.6.8
- DJANGO=Django==1.7.1
install:
- pip install -q $DJANGO
- pip install coveralls
- python setup.py develop
script:
- which django-admin.py
- PYTHONPATH=$PYTHONPATH:$PWD coverage run --source=defender ~/virtualenv/python2.7/bin/django-admin.py test defender --settings=defender.test_settings
- coverage report -m
after_script:
- coveralls --verbose