mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-01-05 21:49:24 +01:00
24 lines
407 B
YAML
24 lines
407 B
YAML
language: python
|
|
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
|
|
env:
|
|
- DJANGO=2.0.5
|
|
|
|
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
|