aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-03-20 23:03:47 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2018-03-20 23:03:47 -0400
commitec90afc9f2d178f9f8a901fec9c4157ca08a0d08 (patch)
treeee4c00cedf4d08a49e8775c08b1d3bf90e8d714c /Jenkinsfile
parenta1e9ddc36ec4b4de4aafbf10db14ac9b3909c621 (diff)
downloadcryptography-ec90afc9f2d178f9f8a901fec9c4157ca08a0d08.tar.gz
cryptography-ec90afc9f2d178f9f8a901fec9c4157ca08a0d08.tar.bz2
cryptography-ec90afc9f2d178f9f8a901fec9c4157ca08a0d08.zip
Add urllib3 to downstream tests (#4165)
* Add urllib3 to downstream tests * empty commit * remove a suffix
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index eba186fb..7f8cf6b7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -194,6 +194,21 @@ def downstreams = [
pytest src
"""
],
+ [
+ downstreamName: 'urllib3',
+ label: 'docker',
+ imageName: 'pyca/cryptography-runner-ubuntu-rolling',
+ script: """#!/bin/bash -xe
+ git clone --depth 1 https://github.com/shazow/urllib3
+ cd urllib3
+ virtualenv .venv
+ source .venv/bin/activate
+ pip install ../cryptography
+ pip install -r ./dev-requirements.txt
+ pip install -e .[socks]
+ pytest test
+ """
+ ],
]
def checkout_git(label) {