mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-20 18:31:53 +00:00
27 lines
510 B
YAML
27 lines
510 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.3"
|
|
- "3.4"
|
|
- "3.5"
|
|
env:
|
|
- DJANGO=1.7
|
|
- DJANGO=1.8
|
|
- DJANGO=1.9
|
|
install:
|
|
# command to install dependencies
|
|
- "pip install coveralls"
|
|
- "pip install pytz" # Needed for tests
|
|
- pip install -q Django==$DJANGO
|
|
- "pip install ."
|
|
# command to run tests
|
|
script:
|
|
- coverage run --branch --source=notifications manage.py test
|
|
matrix:
|
|
exclude:
|
|
- python: "3.5"
|
|
env: DJANGO=1.7
|
|
- python: "3.3"
|
|
env: DJANGO=1.9
|
|
after_success:
|
|
- coveralls
|