We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d45358 commit dea96f2Copy full SHA for dea96f2
.travis.yml
@@ -23,8 +23,8 @@ env:
23
24
jobs:
25
include:
26
- - stage: lint
27
- name: "Tox tests and coverage"
+ - &linting
+ stage: lint
28
language: python
29
python: 3.7
30
before_script:
@@ -45,6 +45,14 @@ jobs:
45
- tox -- tests/ --ignore tests/test_pythonpackage.py
46
# (we ignore test_pythonpackage.py since these run way too long!!
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
54
+ name: "Tox Python 3 & Coverage"
55
+ env: TOXENV=py3
56
after_success:
57
- coveralls
58
0 commit comments