Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tox-boulder-integration.sh « tests - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c8a967fd49f55f8f3c103cb799d70d017727c05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash -e
# A simple wrapper around tests/boulder-integration.sh that activates the tox
# virtual environment defined by the environment variable TOXENV before running
# integration tests.

if [ -z "${TOXENV+x}" ]; then
    echo "The environment variable TOXENV must be set to use this script!" >&2
    exit 1
fi

source .tox/$TOXENV/bin/activate
tests/boulder-integration.sh