...

Text file src/github.com/letsencrypt/boulder/t.sh

Documentation: github.com/letsencrypt/boulder

     1#!/usr/bin/env bash
     2#
     3# Outer wrapper for invoking test.sh inside docker-compose.
     4#
     5
     6if type realpath >/dev/null 2>&1 ; then
     7  cd "$(realpath -- $(dirname -- "$0"))"
     8fi
     9
    10# Use a predictable name for the container so we can grab the logs later
    11# for use when testing logs analysis tools.
    12docker rm boulder_tests
    13exec docker compose run --name boulder_tests boulder ./test.sh "$@"

View as plain text