certbot/tests/letstest/scripts/test_tests.sh

23 lines
628 B
Bash
Raw Permalink Normal View History

2016-10-17 16:11:24 -04:00
#!/bin/sh -xe
REPO_ROOT="letsencrypt"
LE_AUTO="$REPO_ROOT/letsencrypt-auto-source/letsencrypt-auto"
2018-01-25 01:38:36 -05:00
LE_AUTO="$LE_AUTO --debug --no-self-upgrade --non-interactive"
2016-10-17 16:11:24 -04:00
MODULES="acme certbot certbot_apache certbot_nginx"
PIP_INSTALL="$REPO_ROOT/tools/pip_install.py"
2016-10-17 16:11:24 -04:00
VENV_NAME=venv
# *-auto respects VENV_PATH
2018-01-25 01:38:36 -05:00
$LE_AUTO --os-packages-only
LE_AUTO_SUDO="" VENV_PATH="$VENV_NAME" $LE_AUTO --no-bootstrap --version
2016-10-17 16:11:24 -04:00
. $VENV_NAME/bin/activate
"$PIP_INSTALL" pytest
2016-10-17 16:11:24 -04:00
# change to an empty directory to ensure CWD doesn't affect tests
cd $(mktemp -d)
for module in $MODULES ; do
echo testing $module
pytest -v --pyargs $module
2016-10-17 16:11:24 -04:00
done