django-notifications/.travis.yml
2020-05-07 10:49:47 -05:00

31 lines
536 B
YAML

language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
env:
- DJANGO=2.2
- DJANGO=3.0
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:
- SAMPLE_APP=1 coverage run --branch --source=notifications manage.py test
- coverage run --branch --source=notifications manage.py test
matrix:
exclude:
- python: "3.5"
env: DJANGO=3.0
after_success:
- coveralls