Skip to content

Commit

Permalink
Makefile debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cognifloyd committed Dec 18, 2024
1 parent e9b7911 commit 06a0189
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,7 @@ itests: requirements .itests
echo "Done running integration tests in" $$component; \
echo "==========================================================="; \
done; \
echo failed=$$failed; \
if [ $$failed -gt 0 ]; then exit 1; fi

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

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

.PHONY: cli
Expand Down

0 comments on commit 06a0189

Please sign in to comment.