Skip to content
Merged
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
15 changes: 15 additions & 0 deletions cli/bash/commands/basectl/tests/setup_helpers.bash
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,9 @@ if [[ "${1:-}" == "--version" ]]; then
printf 'Python 3.13.test\n'
exit 0
fi
if [[ "${1:-}" == "-c" && "${2:-}" == "import base_setup.diagnostics" ]]; then
exit 0
fi
if [[ "${1:-}" == "-m" && "${2:-}" == "base_setup" ]]; then
if [[ "$*" == *"--action route"* ]]; then
base_test_protocol_project_setup_route base "$BASE_HOME" "$BASE_HOME/base_manifest.yaml" \
Expand Down Expand Up @@ -380,6 +383,9 @@ if [[ "${1:-}" == "--version" ]]; then
printf 'Python 3.13.test\n'
exit 0
fi
if [[ "${1:-}" == "-c" && "${2:-}" == "import base_setup.diagnostics" ]]; then
exit 0
fi
if [[ "${1:-}" == "-m" && "${2:-}" == "base_setup" ]]; then
if [[ "$*" == *"--action route"* ]]; then
base_test_protocol_project_setup_route base "$BASE_HOME" "$BASE_HOME/base_manifest.yaml" \
Expand Down Expand Up @@ -547,6 +553,9 @@ if [[ "${1:-}" == "--version" ]]; then
printf 'Python 3.13.test\n'
exit 0
fi
if [[ "${1:-}" == "-c" && "${2:-}" == "import base_setup.diagnostics" ]]; then
exit 0
fi
if [[ "${1:-}" == "-m" && "${2:-}" == "base_setup" ]]; then
if [[ "$*" == *"--action route"* ]]; then
base_test_protocol_project_setup_route base "$BASE_HOME" "$BASE_HOME/base_manifest.yaml" \
Expand Down Expand Up @@ -727,6 +736,9 @@ if [[ "${1:-}" == "--version" ]]; then
printf 'Python 3.13.test\n'
exit 0
fi
if [[ "${1:-}" == "-c" && "${2:-}" == "import base_setup.diagnostics" ]]; then
exit 0
fi
if [[ "${1:-}" == "-m" && "${2:-}" == "pip" && "${3:-}" == "show" && "${4:-}" == "$pyyaml_package" ]]; then
printf '%s\n' "$4" >> "${BASE_SETUP_TEST_STATE_DIR:?}/pip-show.log"
[[ -f "${BASE_SETUP_TEST_STATE_DIR:?}/pyyaml-installed" ]]
Expand Down Expand Up @@ -786,6 +798,9 @@ if [[ "${1:-}" == "--version" ]]; then
printf 'Python 3.13.test\n'
exit 0
fi
if [[ "${1:-}" == "-c" && "${2:-}" == "import base_setup.diagnostics" ]]; then
exit 0
fi
if [[ "${1:-}" == "-m" && "${2:-}" == "base_setup" ]]; then
shift 2
original_args=("$@")
Expand Down
Loading