Skip to content

Commit

Permalink
Fix conditional in integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rapphil authored Jul 17, 2024
1 parent 361aa09 commit 38627f9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/scripts/integ-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@ result=$?

docker stop $CONTAINER_NAME && docker rm $CONTAINER_NAME

if [ "$result" == "1" ]; then
if [[ "$result" == "1" ]]; then
echo "Integration tests failed"
exit 1
fi

echo "Integration tests run successfully"

exit 0

0 comments on commit 38627f9

Please sign in to comment.