Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPSEXP-2909 Remove checkout step from verify-compose and enable specifying path to postman tests #787

Merged
merged 12 commits into from
Oct 24, 2024
Prev Previous commit
Next Next commit
wipe
  • Loading branch information
pmacius committed Oct 24, 2024
commit 03f18880f5e663a206c5c0ed57a5dbf49733bcd7
4 changes: 0 additions & 4 deletions .github/actions/dbp-charts/verify-compose/docker_compose.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@ $COMPOSE_BIN -f "${COMPOSE_FILE_PATH}" up -d --quiet-pull --wait
echo "All services are up and running... starting postman tests"

docker run -a STDOUT --volume "${POSTMAN_PATH}:/etc/newman" --network host postman/newman:5.3 run "${POSTMAN_JSON}" --global-var "protocol=http" --global-var "url=localhost:8080"

retVal=$?

[ "${retVal}" -eq 0 ] && echo "Postman tests were successful" || echo "Postman tests failed"