This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun pushed a commit to branch v3-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-0-test by this push:
new 17ac83d3111 [v3-0-test] fix: add COLOR_GREEN and correct providers
tests success message color\n\nAdds missing COLOR_GREEN variable and fixes typo
in providers tests success message to use the correct color. Prevents unbound
variable error with bash -u. (#51399) (#51458)
17ac83d3111 is described below
commit 17ac83d3111bb88116c4188e6c4320dbfd7e6cce
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 6 10:54:46 2025 +0200
[v3-0-test] fix: add COLOR_GREEN and correct providers tests success
message color\n\nAdds missing COLOR_GREEN variable and fixes typo in providers
tests success message to use the correct color. Prevents unbound variable error
with bash -u. (#51399) (#51458)
(cherry picked from commit f04a2821e38abf468fe47c75292cdd2897c018e1)
Co-authored-by: Giannis Tampakis <[email protected]>
---
scripts/ci/testing/run_unit_tests.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/scripts/ci/testing/run_unit_tests.sh
b/scripts/ci/testing/run_unit_tests.sh
index 9db2b44b9b2..bba4055acba 100755
--- a/scripts/ci/testing/run_unit_tests.sh
+++ b/scripts/ci/testing/run_unit_tests.sh
@@ -20,6 +20,7 @@ export COLOR_RED=$'\e[31m'
export COLOR_BLUE=$'\e[34m'
export COLOR_YELLOW=$'\e[33m'
export COLOR_RESET=$'\e[0m'
+export COLOR_GREEN=$'\e[32m'
if [[ ! "$#" -eq 2 ]]; then
echo "${COLOR_RED}You must provide 2 arguments: Group,
Scope!.${COLOR_RESET}"
@@ -107,7 +108,7 @@ function providers_tests() {
echo
exit "${RESULT}"
fi
- echo "${COLOR_GREEB}Providers tests completed successfully${COLOR_RESET}"
+ echo "${COLOR_GREEN}Providers tests completed successfully${COLOR_RESET}"
}