Skip to content

Commit 06a0189

Browse files
committed
Makefile debug
1 parent e9b7911 commit 06a0189

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -907,6 +907,7 @@ itests: requirements .itests
907907
echo "Done running integration tests in" $$component; \
908908
echo "==========================================================="; \
909909
done; \
910+
echo failed=$$failed; \
910911
if [ $$failed -gt 0 ]; then exit 1; fi
911912

912913
.PHONY: .run-integration-tests-coverage
@@ -932,6 +933,7 @@ endif
932933
echo "Done integration running tests in" $$component; \
933934
echo "==========================================================="; \
934935
done; \
936+
echo failed=$$failed; \
935937
if [ $$failed -gt 0 ]; then exit 1; fi
936938
# NOTE: If you also want to run orquesta tests which seem to have a bunch of race conditions, use
937939
# ci-integration-full target
@@ -1083,6 +1085,7 @@ runners-itests: requirements .runners-itests
10831085
echo "==========================================================="; \
10841086
. $(VIRTUALENV_DIR)/bin/activate; pytest --capture=no --verbose $(PYTEST_OPTS) $$component/tests/integration || ((failed+=1)); \
10851087
done; \
1088+
echo failed=$$failed; \
10861089
if [ $$failed -gt 0 ]; then exit 1; fi
10871090

10881091
.PHONY: .runners-itests-coverage-html
@@ -1099,6 +1102,7 @@ runners-itests: requirements .runners-itests
10991102
. $(VIRTUALENV_DIR)/bin/activate; pytest --capture=no --verbose $(PYTEST_OPTS)
11001103
--cov=$$component --cov-report=html $$component/tests/integration || ((failed+=1)); \
11011104
done; \
1105+
echo failed=$$failed; \
11021106
if [ $$failed -gt 0 ]; then exit 1; fi
11031107

11041108
.PHONY: cli

0 commit comments

Comments
 (0)