django-notifications/.travis.yml
2015-04-09 04:57:36 +00:00

27 lines
524 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
install:
# command to install dependencies
- "pip install coveralls"
- "pip install pytz" # Needed for tests
- pip install -q Django==$DJANGO --use-mirrors
- "pip install ."
# command to run tests
script:
- coverage run --branch --source=notifications manage.py test
matrix:
exclude:
- python: "2.6"
env: DJANGO=1.7
- python: "2.6"
env: DJANGO=1.8
after_success:
- coveralls