aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-02-25 23:18:03 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2018-02-25 10:18:03 -0500
commit96787f954bf89b12dfc3f8744bcb0998b2f0c22f (patch)
tree07f2fa3cf5a5e5c1c73fc6e0111929fb95b1a46f /Jenkinsfile
parent8374206d4d4c4e9fe2fd3217b629d9061227198d (diff)
downloadcryptography-96787f954bf89b12dfc3f8744bcb0998b2f0c22f.tar.gz
cryptography-96787f954bf89b12dfc3f8744bcb0998b2f0c22f.tar.bz2
cryptography-96787f954bf89b12dfc3f8744bcb0998b2f0c22f.zip
test acme and also josepy as a downstream in jenkins (#4123)
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 8f291172..eba186fb 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -177,6 +177,21 @@ def downstreams = [
pip install -e acme
pip install -e .
pytest certbot/tests
+ pytest acme
+ """
+ ],
+ [
+ downstreamName: 'certbot-josepy',
+ label: 'docker',
+ imageName: 'pyca/cryptography-runner-ubuntu-rolling',
+ script: """#!/bin/bash -xe
+ git clone --depth=1 https://github.com/certbot/josepy
+ cd josepy
+ virtualenv .venv
+ source .venv/bin/activate
+ pip install ../cryptography
+ pip install -e .[tests]
+ pytest src
"""
],
]