github.com/letsencrypt/boulder@v0.20251208.0/t.sh (about) 1 #!/usr/bin/env bash 2 # 3 # Outer wrapper for invoking test.sh inside docker-compose. 4 # 5 6 set -o errexit 7 8 if type realpath >/dev/null 2>&1 ; then 9 cd "$(realpath -- $(dirname -- "$0"))" 10 fi 11 12 # Generate the test keys and certs necessary for the integration tests. 13 docker compose run --rm bsetup 14 15 exec docker compose run --rm --name boulder_tests boulder ./test.sh "$@"