mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
e8d0c5b2c7
also update travis to latest django patch releases
26 lines
432 B
YAML
26 lines
432 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- 3.4.4
|
|
- "3.5"
|
|
|
|
env:
|
|
- DJANGO=1.8.17
|
|
- DJANGO=1.9.12
|
|
- DJANGO=1.10.4
|
|
|
|
install:
|
|
- pip install -q Django==$DJANGO
|
|
- pip install -q -r requirements.txt
|
|
- pip install -q -r requirements-testing.txt
|
|
|
|
before_script:
|
|
- "pep8 --exclude=migrations --ignore=E501 helpdesk"
|
|
|
|
script:
|
|
- coverage run --source='.' quicktest.py helpdesk
|
|
|
|
after_success:
|
|
- codecov
|