mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 14:26:10 -04:00
allow for running individual integration tests
This commit is contained in:
parent
91918a6853
commit
ad5134331c
1 changed files with 12 additions and 0 deletions
12
tests/boulder-integration.sh
Executable file
12
tests/boulder-integration.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
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
|
||||
Loading…
Reference in a new issue