mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 16:03:19 +01:00
29 lines
503 B
YAML
29 lines
503 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
|
|
env:
|
|
- DJANGO=1.8.15
|
|
- DJANGO=1.9.10
|
|
- DJANGO=1.10.2
|
|
|
|
install:
|
|
- pip install argparse
|
|
- pip install coverage
|
|
- pip install codecov
|
|
- pip install pep8
|
|
- pip install -q Django==$DJANGO
|
|
- pip install -q -r requirements.txt
|
|
|
|
before_script:
|
|
- "pep8 --exclude=migrations,south_migrations --ignore=E501 helpdesk"
|
|
|
|
script:
|
|
- coverage run --source='.' quicktest.py helpdesk
|
|
|
|
after_success:
|
|
- codecov
|