django-helpdeskmig/.travis.yml

26 lines
492 B
YAML
Raw Normal View History

language: python
dist: xenial # Python 3.7 requires xenial because of dependencies
python:
- "3.5"
- "3.6"
- "3.7"
env:
2019-01-02 01:59:16 +01:00
- DJANGO=2.0.9
- DJANGO=2.1.4
install:
2014-06-05 01:49:57 +02:00
- pip install -q Django==$DJANGO
- pip install -q -r requirements.txt
2016-11-01 22:37:01 +01:00
- pip install -q -r requirements-testing.txt
2016-10-24 10:06:36 +02:00
before_script:
- "pycodestyle --exclude=migrations --ignore=E501,W503,W504 helpdesk"
2016-10-24 10:06:36 +02:00
script:
- coverage run --source='.' quicktest.py helpdesk
after_success:
2016-10-24 10:06:36 +02:00
- codecov