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

boulder-integration.sh « tests - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e16fcbbc7be43de4058a0055ac68e2b8558df45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e

if [ "$INTEGRATION_TEST" = "certbot" ]; then
    tests/certbot-boulder-integration.sh
elif [ "$INTEGRATION_TEST" = "nginx" ]; then
    certbot-nginx/tests/boulder-integration.sh
else
   tests/certbot-boulder-integration.sh
    # Most CI systems set this variable to true.
    # If the tests are running as part of CI, Nginx should be available.
    if ${CI:-false} || type nginx; then
        certbot-nginx/tests/boulder-integration.sh
    fi
fi