mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 22:08:07 -04:00
14 lines
381 B
Bash
Executable file
14 lines
381 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$TOXENV" != "py27-nginx-oldest" ]; then
|
|
tests/certbot-boulder-integration.sh
|
|
fi
|
|
if [ "$TOXENV" != "py27-certbot-oldest" ]; then
|
|
# 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
|