We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f429a5 commit aac576bCopy full SHA for aac576b
1 file changed
.travis.yml
@@ -1,8 +1,9 @@
1
sudo: false
2
cache: pip
3
+
4
language: python
5
python:
-- 3.6
6
+ - 3.7
7
stages:
8
- lint
9
- docs
@@ -13,8 +14,6 @@ jobs:
13
14
- stage: lint
15
env: TOXENV=manifest
16
- env: TOXENV=flake8
- - env: TOXENV=xenon
17
- - env: TOXENV=vulture
18
- env: TOXENV=pyroma
19
# docs stage
20
- stage: docs
@@ -30,12 +29,8 @@ matrix:
30
29
- env: TOXENV=xenon
31
- env: TOXENV=vulture
32
install:
33
-- pip install --upgrade pip
34
-- pip install tox
35
-- pip install codecov
36
-- pip install coverage
+ - sh -c 'if [ "$TOXENV" = "py" ]; then pip install tox codecov; else pip install tox; fi'
37
script:
38
-- tox
+ - tox
39
after_success:
40
-- tox -e coverage-report
41
-- codecov
+ - sh -c 'if [ "$TOXENV" = "py" ]; then tox -e coverage-report; codecov; fi'
0 commit comments