aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 29f9a767..36cc0091 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -238,6 +238,7 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) {
IF %ERRORLEVEL% NEQ 0 EXIT /B %ERRORLEVEL%
virtualenv .codecov
call .codecov/Scripts/activate
+ pip install coverage==4.3.4
pip install codecov
codecov -e JOB_BASE_NAME,LABEL
"""
@@ -255,7 +256,7 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) {
tox -r -- --color=yes
virtualenv .venv
source .venv/bin/activate
- pip install coverage
+ pip install coverage==4.3.4
bash <(curl -s https://codecov.io/bash) -e JOB_BASE_NAME,LABEL
"""
}
@@ -274,7 +275,7 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) {
fi
virtualenv .venv
source .venv/bin/activate
- pip install coverage
+ pip install coverage==4.3.4
bash <(curl -s https://codecov.io/bash) -e JOB_BASE_NAME,LABEL
"""
}