8000
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 b7120ad commit cb93071Copy full SHA for cb93071
.travis.yml
@@ -26,8 +26,12 @@ install:
26
- bash requirements-install.sh
27
28
script:
29
- - py.test
+ - coverage run --parallel-mode -m pytest
30
- bash flake8-run.sh
31
32
after_script:
33
- python debug-info.py
34
+
35
+after_success:
36
+ - coverage combine
37
+ - codecov
requirements-install.sh
@@ -13,3 +13,5 @@ pip install -U -r requirements-test.txt
13
if [[ $USE_OPTIONAL == "true" ]]; then
14
pip install -U -r requirements-optional.txt
15
fi
16
17
+pip install -U codecov
0 commit comments