Skip to content

Commit

Permalink
Merge pull request #24698 from edsantiago/ouch
Browse files Browse the repository at this point in the history
make remotesystem: fail early if serial tests fail
  • Loading branch information
openshift-merge-bot[bot] authored Nov 28, 2024
2 parents ceee7cb + 2f1a1fb commit 1455d87
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -737,8 +737,11 @@ remotesystem:
exit 1;\
fi;\
env PODMAN="$(CURDIR)/bin/podman-remote" bats -T --filter-tags '!ci:parallel' test/system/ ;\
env PODMAN="$(CURDIR)/bin/podman-remote" bats -T --filter-tags ci:parallel -j $$(nproc) test/system/ ;\
rc=$$?;\
rc=$$?; \
if [ $$rc -eq 0 ]; then \
env PODMAN="$(CURDIR)/bin/podman-remote" bats -T --filter-tags ci:parallel -j $$(nproc) test/system/ ;\
rc=$$?;\
fi; \
kill %1;\
else \
echo "Skipping $@: 'timeout -v' unavailable'";\
Expand Down

0 comments on commit 1455d87

Please sign in to comment.