forked from jamiecounsell/django-pwned-passwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (34 loc) · 953 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.6"
before_install:
# work around https://github.com/travis-ci/travis-ci/issues/8363
- pyenv install 3.5.4
- pyenv global system 3.5.4
env:
- TOX_ENV=py36-django-19
- TOX_ENV=py35-django-19
- TOX_ENV=py27-django-19
- TOX_ENV=py36-django-110
- TOX_ENV=py35-django-110
- TOX_ENV=py27-django-110
- TOX_ENV=py36-django-111
- TOX_ENV=py35-django-111
- TOX_ENV=py27-django-111
- TOX_ENV=py36-django-20
- TOX_ENV=py35-django-20
- TOX_ENV=py36-django-21
- TOX_ENV=py35-django-21
matrix:
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements_test.txt
# command to run tests using coverage, e.g. python setup.py test
script: tox -e $TOX_ENV
after_success:
- codecov -e TOX_ENV
notifications:
email:
on_success: change
on_failure: change