forked from aaronbassett/DisposableEmailChecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (46 loc) · 1.2 KB
/
.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
44
45
46
47
48
49
50
51
52
# Config file for automatic testing at travis-ci.org
language: python
matrix:
include:
- python: 2.7
env: TOXENV=django18-py27
- python: 2.7
env: TOXENV=django19-py27
- python: 2.7
env: TOXENV=django110-py27
- python: 2.7
env: TOXENV=django111-py27
- python: 3.3
env: TOXENV=django18-py33
- python: 3.4
env: TOXENV=django18-py34
- python: 3.4
env: TOXENV=django19-py34
- python: 3.4
env: TOXENV=django110-py34
- python: 3.4
env: TOXENV=django111-py34
- python: 3.4
env: TOXENV=django20-py34
- python: 3.5
env: TOXENV=django18-py35
- python: 3.5
env: TOXENV=django19-py35
- python: 3.5
env: TOXENV=django110-py35
- python: 3.5
env: TOXENV=django111-py35
- python: 3.5
env: TOXENV=django20-py35
- python: 3.6
env: TOXENV=django111-py36
- python: 3.6
env: TOXENV=django20-py36
before_install:
- pip install codecov tox
# 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
after_success:
- codecov