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 9cd4e57 commit 71a9d09Copy full SHA for 71a9d09
.travis.yml
@@ -16,5 +16,10 @@ script:
16
- pytest --cov
17
18
after_success:
19
- - codecov --flags "py${TRAVIS_PYTHON_VERSION//./}"
+ # Report to codecov, with different flags for tests.
20
+ - coverage xml --include 'loguru/*'
21
+ - codecov -f coverage.xml--flags loguru "py${TRAVIS_PYTHON_VERSION//./}" --disable search gcov pycov
22
+ - coverage xml --include 'tests/*'
23
+ - codecov -f coverage.xml--flags tests "py${TRAVIS_PYTHON_VERSION//./}" --disable search gcov pycov
24
+
25
- cd docs && make html
0 commit comments