Files
testium/scripts/set_env.sh
2025-12-29 10:46:05 +01:00

9 lines
133 B
Bash
Executable File

#!/bin/bash
if [ -z $PY_VENV_DIR ]; then
echo "PY_VENV_NAME must be defined"
exit -1
fi
source "$PY_VENV_DIR/bin/activate"