mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
This removes a lot of setup code we used to need in order to get Boulder to run, and should reduce brittleness of tests based on Boulder changes. This also unblocks Boulder from upgrading to MariaDB 10.1 in integration tests, since changing to 10.1 syntax for user creation would break the current certbot integration tests (which run 10.0).
15 lines
220 B
Bash
Executable File
15 lines
220 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
./tests/boulder-fetch.sh
|
|
|
|
source .tox/$TOXENV/bin/activate
|
|
|
|
until curl http://boulder:4000/directory 2>/dev/null; do
|
|
echo waiting for boulder
|
|
sleep 1
|
|
done
|
|
|
|
./tests/boulder-integration.sh
|