aboutsummaryrefslogtreecommitdiffstats
path: root/.travis/downstream.d/certbot.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/downstream.d/certbot.sh')
-rwxr-xr-x.travis/downstream.d/certbot.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/.travis/downstream.d/certbot.sh b/.travis/downstream.d/certbot.sh
index 78ec7f51..6061e310 100755
--- a/.travis/downstream.d/certbot.sh
+++ b/.travis/downstream.d/certbot.sh
@@ -4,13 +4,16 @@ case "${1}" in
install)
git clone --depth=1 https://github.com/certbot/certbot
cd certbot
- pip install pytest pytest-mock mock
- pip install -e acme
- pip install -e .
+ git rev-parse HEAD
+ pip install -e acme[dev]
+ pip install -e .[dev]
;;
run)
cd certbot
- pytest certbot/tests
+ # Ignore some warnings for now since they're now automatically promoted
+ # to errors. We can probably remove this when acme gets split into
+ # its own repo
+ pytest -Wignore certbot/tests
pytest acme
;;
*)