did similar for the script for QA

This commit is contained in:
Maria Haider 2024-01-08 18:54:26 +01:00
parent 69f1acada9
commit 0e7da40083
Signed by: mariah
GPG key ID: 7414A760CA747E57
2 changed files with 10 additions and 2 deletions

View file

@ -42,8 +42,6 @@ raw_not_executed_test=$(echo "$exec_status" | jq --raw-output '."last execution
declare -a not_executed_test=($(echo "$raw_not_executed_test" | tr "\n" " "))
#echo ${not_executed_test[*]}
if [ "$not_executed_test" != null ]
then
echo "more than two lands not executed "

View file

@ -38,6 +38,16 @@ if [ "$diff_exec_time" -gt "$day" ]; then
fi
raw_not_executed_test=$(echo "$exec_status" | jq --raw-output '."last execution result".notExecutedTests[2]')
declare -a not_executed_test=($(echo "$raw_not_executed_test" | tr "\n" " "))
if [[ "${not_executed_test[*]}" == *"XA"* ]] || [[ "${not_executed_test[*]}" == *"XB"* ]]
then
echo "XA, XB or both not executed"
exit $STATE_CRITICAL
fi
raw_lands=$(curl -s https://api.swedenconnect.se/testid/qa/execution-status | jq --raw-output '."last execution result".failed[].result')