mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-05-24 11:19:43 +00:00
fix: wf efficiency
This commit is contained in:
parent
f305992ab3
commit
8c993704f9
3
.github/workflows/test_common.yml
vendored
3
.github/workflows/test_common.yml
vendored
@ -39,6 +39,7 @@ env:
|
||||
jobs:
|
||||
tests:
|
||||
name: tests
|
||||
if: ${{ !inputs.fleet_tests || matrix.shard == 0 }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@ -279,7 +280,7 @@ jobs:
|
||||
for key in $(jq -r 'keys[]' results.json); do
|
||||
result=$(jq -r --arg key "$key" '.[$key]' results.json)
|
||||
echo "Key: $key, Value: $result"
|
||||
if [ "$result" != "success" ]; then
|
||||
if [ -n "$result" ] && [ "$result" != "success" ]; then
|
||||
echo "Value 'success' not found at key: $key"
|
||||
TESTS_RESULT="failure"
|
||||
break
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user