Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Var ROBOT_DEBUG_COMPLETION to allow completion tests to print to console #59

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion scripts/acceptance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export XDG_DATA_HOME=${TMP_DIR}/data && mkdir -p ${XDG_DATA_HOME}
# contact the cluster, which may not be accessible, and the command
# will timeout.
set_shell_debug_level 3
if helm version -c &> /dev/null; then
if helm version -c --tls &> /dev/null; then
echo "===================="
echo "Running with Helm v2"
echo "===================="
Expand All @@ -131,5 +131,10 @@ if [[ ! -d ${ROBOT_VENV_DIR} ]]; then
pip install ${ROBOT_PY_REQUIRES}
fi

if [ -n "$ROBOT_DEBUG_COMPLETION" ]; then
scripts/completion-tests/test-completion.sh
exit
fi

# Run Robot Framework, output
robot --outputdir=${ROBOT_OUTPUT_DIR} ${SUITES_TO_RUN}