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 f8e7272 commit dc0b34aCopy full SHA for dc0b34a
.travis.yml
@@ -1,25 +1,30 @@
1
-language: python
2
-
3
sudo: false
4
+language: python
5
python:
6
- - "3.7"
7
- - "3.6"
8
- - "3.5"
+ - 3.6
+ - 3.7
+ - pypy3
+
9
+addons:
10
+ apt:
11
+ packages:
12
+ -
13
14
install:
15
+ - pip install codecov
16
- pip install tox
17
+ - pip install tox-travis
18
-env:
- - TOXENV=quality
19
+script:
20
+ - codecov --version
21
+ - tox
22
-matrix:
- include:
- - python: 3.7
- env: TOXENV=py37
23
+after_success:
24
+ - codecov
25
-script:
- - tox -e $TOXENV
26
+env:
27
+ - TOXENV=quality
28
29
notifications:
30
email: false
0 commit comments