From 612c8dbce16dcd3cfb555099e232c37025d09360 Mon Sep 17 00:00:00 2001 From: terrtia Date: Tue, 13 Aug 2024 14:23:50 +0200 Subject: [PATCH] chg: [tests] improve test output, show all running screens --- bin/LAUNCH.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bin/LAUNCH.sh b/bin/LAUNCH.sh index c53b3c3f..2496cbba 100755 --- a/bin/LAUNCH.sh +++ b/bin/LAUNCH.sh @@ -581,6 +581,15 @@ function update_thirdparty { function launch_tests() { tests_dir=${AIL_HOME}/tests bin_dir=${AIL_BIN} + echo -e "" + echo -e $GREEN"AIL SCREENS:"$DEFAULT + echo -e $ROSE`screen -ls`$DEFAULT + echo -e $GREEN"\t* Redis: $isredis"$DEFAULT + echo -e $GREEN"\t* Kvrocks: $iskvrocks $isscripted $isflasked"$DEFAULT + echo -e $GREEN"\t* Modules: $isscripted"$DEFAULT + echo -e $GREEN"\t* Flask: $isflasked"$DEFAULT + echo -e "" + echo -e "" python3 -m nose2 --start-dir $tests_dir --coverage $bin_dir --with-coverage test_api test_modules }