mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
00b9dce0e9
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
30 lines
512 B
YAML
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 |