mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-07 16:44:03 +01:00
25 lines
421 B
YAML
25 lines
421 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
env:
|
|
- DJANGO=1.11.13
|
|
|
|
install:
|
|
- pip install -q Django==$DJANGO
|
|
- pip install -q -r requirements.txt
|
|
- pip install -q -r requirements-testing.txt
|
|
|
|
before_script:
|
|
- "pycodestyle --exclude=migrations --ignore=E501,W503,W504 helpdesk"
|
|
|
|
script:
|
|
- coverage run --source='.' quicktest.py helpdesk
|
|
|
|
after_success:
|
|
- codecov
|