mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
17 lines
378 B
Bash
17 lines
378 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Simple integration test. Make sure to activate virtualenv beforehand
|
||
|
|
# (source venv/bin/activate) and that you are running Pebble test
|
||
|
|
# instance (see ./pebble-fetch.sh).
|
||
|
|
|
||
|
|
cleanup_and_exit() {
|
||
|
|
EXIT_STATUS=$?
|
||
|
|
unset SERVER
|
||
|
|
exit $EXIT_STATUS
|
||
|
|
}
|
||
|
|
|
||
|
|
trap cleanup_and_exit EXIT
|
||
|
|
|
||
|
|
export SERVER=https://localhost:14000/dir
|
||
|
|
|
||
|
|
./tests/certbot-boulder-integration.sh
|