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 57208ca commit 620807aCopy full SHA for 620807a
.travis.yml
@@ -11,15 +11,25 @@ python:
11
12
install:
13
- pip install .
14
- - pip install tox
+ - pip install tox coverage codecov
15
- "TOX_ENV=${TRAVIS_PYTHON_VERSION/[0-9].[0-9]/py${TRAVIS_PYTHON_VERSION/.}}"
16
17
18
branches:
19
only:
20
+ - master
21
- develop
22
- feature/travis
23
24
+
25
+before_success:
26
+ - coverage erase
27
28
29
+after_success:
30
+ - coverage combine
31
+ - codecov
32
33
script: tox -e $TOX_ENV
34
35
before_cache:
0 commit comments