Skip to content
Snippets Groups Projects
Commit 21881ccb authored by ale's avatar ale
Browse files

Disable retry for testsuite

parent c5edf164
Branches
No related tags found
1 merge request!469Run ci-test with actual data
......@@ -3,5 +3,14 @@
TESTSUITE_IMAGE="registry.git.autistici.org/noblogs/testsuite:main"
# Run the test suite using Podman, in the foreground.
exec podman run --rm --pull=always --env TARGET_ADDR=${TARGET_ADDR} --network=host ${TESTSUITE_IMAGE}
podman run --rm --pull=always --env TARGET_ADDR=${TARGET_ADDR} --network=host ${TESTSUITE_IMAGE}
rc=$?
# Convert into permanent error.
if [ $rc -gt 0 ]; then
echo "test suite exited with status $rc" >&2
exit 2
fi
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment