File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ services:
13
13
14
14
before_install :
15
15
# https://github.com/travis-ci/travis-ci/issues/6069#issuecomment-266546552
16
- - git remote set-branches --add origin master
16
+ - git remote set-branches --add origin develop
17
17
- git fetch
18
18
19
19
env :
23
23
24
24
jobs :
25
25
include :
26
- - stage : lint
27
- name : " Tox tests and coverage "
26
+ - &linting
27
+ stage : lint
28
28
language : python
29
29
python : 3.7
30
30
before_script :
45
45
- tox -- tests/ --ignore tests/test_pythonpackage.py
46
46
# (we ignore test_pythonpackage.py since these run way too long!!
47
47
# test_pythonpackage_basic.py will still be run.)
48
+ name : " Tox Pep8"
49
+ env : TOXENV=pep8
50
+ - << : *linting
51
+ name : " Tox Python 2"
52
+ env : TOXENV=py27
53
+ - << : *linting
54
+ name : " Tox Python 3 & Coverage"
55
+ env : TOXENV=py3
48
56
after_success :
49
57
- coveralls
50
58
You can’t perform that action at this time.
0 commit comments