mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-18 09:41:05 +00:00
27 lines
524 B
YAML
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
|