Add docker-compose as a requirement of certbot-ci (#7120)

Fixes #7110 

This PR declares docker-compose as a requirement for certbot-ci. This way, a recent version of docker-compose is installed in the standard virtual environment set up by `tools/venv.py` and `tools/venv3.py`, and so is available to pytest integration tests from `tox` or in the virtual environment enabled.

* Add docker-compose as a dev dependency and declares it in certbot-ci requirements

* Update docker-compose 1.25.0
This commit is contained in:
Adrien Ferrand
2019-12-18 13:21:54 -08:00
committed by Brad Warren
parent 6ac7aabaf7
commit b5a31bec03
3 changed files with 16 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ version = '0.32.0.dev0'
install_requires = [
'coverage',
'cryptography',
'docker-compose',
'pyopenssl',
'pytest',
'pytest-cov',