aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2018-04-15 05:44:34 -0400
committerPaul Kehrer <paul.l.kehrer@gmail.com>2018-04-15 17:44:34 +0800
commit4dfaef22b672940bbaf9eb14ea6c1aa473709af1 (patch)
tree11f8b33d338df8b2319e733307f04ff68b318fbd /Jenkinsfile
parenta5e74b12889026979a1e2c017e1f5ff5e4b65540 (diff)
downloadcryptography-4dfaef22b672940bbaf9eb14ea6c1aa473709af1.tar.gz
cryptography-4dfaef22b672940bbaf9eb14ea6c1aa473709af1.tar.bz2
cryptography-4dfaef22b672940bbaf9eb14ea6c1aa473709af1.zip
temporarily fix tests (#4195)
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index ca49527c..2f1d7492 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -346,7 +346,9 @@ def build(toxenv, label, imageName, artifacts, artifactExcludes) {
virtualenv .venv
source .venv/bin/activate
# This pin must be kept in sync with tox.ini
- pip install coverage==4.3.4
+ # TODO: drop --no-cache-dir once pip fixes:
+ # https://github.com/pypa/pip/issues/5231
+ pip install --no-cache-dir coverage==4.3.4
bash <(curl -s https://codecov.io/bash) -e JOB_BASE_NAME,LABEL,TOXENV,IMAGE_NAME
"""
}