From 05ec5521606ea74d979aab8e1f8bb386ac32ac69 Mon Sep 17 00:00:00 2001 From: Alex Zgabur Date: Thu, 12 Sep 2024 12:44:41 +0200 Subject: [PATCH] Add flag for html generation Signed-off-by: Alex Zgabur --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1dfa66e7..ad6952cf 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ PYTEST += --junitxml=$(resultsdir)/junit-$(@F).xml -o junit_suite_name=$(@F) endif ifdef html -PYTEST += --html=$(resultsdir)/report-$(@F).html +PYTEST += --html=$(resultsdir)/report-$(@F).html --self-contained-html endif commit-acceptance: black pylint mypy ## Runs pre-commit linting checks