django-helpdeskmig/.travis.yml
Alex Seeholzer 00b9dce0e9 Added coverage generation to testing, consumed by codecov in the CI build (+4 squashed commits)
Squashed commits:
[dadf579] switched to codecov from coveralls
[76f5184] added badge to Readme; debugging travis script;
[8b2a807] Testing submission to coveralls
[675ac37] Added coveralls support for travis
2016-10-20 14:00:51 +02:00

30 lines
512 B
YAML

language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- DJANGO=1.7.11
- DJANGO=1.8.7
- DJANGO=1.9
- DJANGO=1.10
matrix:
exclude:
- python: "3.5" # django 1.7 does not support python 3.5
env: DJANGO=1.7.11
install:
- pip install argparse
- pip install coverage
- pip install codecov
- pip install -q Django==$DJANGO
- pip install -q -r requirements.txt
script:
- coverage run --source='.' quicktest.py helpdesk
after_success:
- codecov