django-helpdesk/.travis.yml
2019-12-17 08:27:05 -05:00

25 lines
436 B
YAML

language: python
dist: bionic # use LTS 18.04
python:
- "3.6"
- "3.7"
- "3.8"
env:
- DJANGO=2.2.8
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