django-helpdesk/.travis.yml

29 lines
503 B
YAML
Raw Normal View History

language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- DJANGO=1.8.15
- DJANGO=1.9.10
- DJANGO=1.10.2
install:
2014-06-05 01:49:57 +02:00
- pip install argparse
- pip install coverage
- pip install codecov
2016-10-24 10:06:36 +02:00
- pip install pep8
2014-06-05 01:49:57 +02:00
- pip install -q Django==$DJANGO
- pip install -q -r requirements.txt
2016-10-24 10:06:36 +02:00
before_script:
- "pep8 --exclude=migrations,south_migrations --ignore=E501 helpdesk"
script:
- coverage run --source='.' quicktest.py helpdesk
after_success:
2016-10-24 10:06:36 +02:00
- codecov