Fix CI (1/2) (#284)
* New default docker image no longer contains bcrypt. * Install cryptography for ACME tests. * Add constraints.pull/285/head
parent
56b2130c6e
commit
0fdede5d7a
|
@ -1,3 +1,4 @@
|
|||
dependencies:
|
||||
# - setup_openssl
|
||||
- setup_remote_constraints
|
||||
- setup_remote_tmp_dir
|
||||
|
|
|
@ -9,6 +9,11 @@
|
|||
set_fact:
|
||||
openssl_binary: openssl
|
||||
|
||||
- name: Make sure cryptography is installed
|
||||
pip:
|
||||
name: cryptography
|
||||
extra_args: "-c {{ remote_constraints }}"
|
||||
|
||||
- name: Register openssl version
|
||||
shell: "{{ openssl_binary }} version | cut -d' ' -f2"
|
||||
register: openssl_version
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
cryptography
|
||||
ipaddress ; python_version < '3.0'
|
||||
pyopenssl
|
||||
bcrypt
|
||||
|
||||
unittest2 ; python_version < '2.7'
|
||||
importlib ; python_version < '2.7'
|
||||
|
|
Loading…
Reference in New Issue