Skip to content

Commit

Permalink
Fixing the return code
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCinquini committed Nov 11, 2024
1 parent bb116ba commit 3f187b6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,12 @@ jobs:
echo "Dev Venue Integration Tests status: $dev_status"
echo "Test Venue Integration Tests status: $test_status"
if [ "$dev_status" != "success" ]; then
echo "MCP Venue Dev Integration Tests failed."
fi
if [ "$test_status" != "success" ]; then
echo "MCP Venue Test Integration Tests failed."
fi
if [ "$dev_status" != "success" ] || [ "$test_status" != "success" ]; then
exit 1
fi

0 comments on commit 3f187b6

Please sign in to comment.