Skip to content

Commit

Permalink
fix path for check mode (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
bernt-matthias authored May 22, 2023
1 parent 66477cc commit dc1e296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion planemo_ci_actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ fi
# check outputs mode
# - check if there were unsuccessful tests
if [ "$MODE" == "check" ]; then
if jq '.["tests"][]["data"] | {status: .status, id: .tool_id, idx: .test_index} | join(";")' tool_test_output.json | grep -v "success;"; then
if jq '.["tests"][]["data"] | {status: .status, id: .tool_id, idx: .test_index} | join(";")' upload/tool_test_output.json | grep -v "success;"; then
echo "Unsuccessful tests found, inspect the 'All tool test results' artifact for details."
exit 1
fi
Expand Down

0 comments on commit dc1e296

Please sign in to comment.