django-helpdesk/.travis.yml
Jonathan Barratt e8d0c5b2c7
implement mocked pop3 and imap tests for get_email
also update travis to latest django patch releases
2016-12-02 19:04:52 +07:00

26 lines
432 B
YAML

language: python
python:
- "2.7"
- 3.4.4
- "3.5"
env:
- DJANGO=1.8.17
- DJANGO=1.9.12
- DJANGO=1.10.4
install:
- pip install -q Django==$DJANGO
- pip install -q -r requirements.txt
- pip install -q -r requirements-testing.txt
before_script:
- "pep8 --exclude=migrations --ignore=E501 helpdesk"
script:
- coverage run --source='.' quicktest.py helpdesk
after_success:
- codecov