From 1807741b0af4e9ca92761ea94a336411ffbe2ef1 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 18 Dec 2024 22:29:00 +0100 Subject: [PATCH] Fixed TOML key. --- .github/workflows/ExtractConfiguration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ExtractConfiguration.yml b/.github/workflows/ExtractConfiguration.yml index 2299ab3..60f4512 100644 --- a/.github/workflows/ExtractConfiguration.yml +++ b/.github/workflows/ExtractConfiguration.yml @@ -177,7 +177,7 @@ jobs: with pyProjectFile.open("rb") as file: pyProjectSettings = tomli_load(file) - unittestXMLFile = Path(pyProjectSettings["tool"]["pytest"]["xml_path"]) + unittestXMLFile = Path(pyProjectSettings["tool"]["pytest"]["junit_xml"]) coverageHTMLDirectory = Path(pyProjectSettings["tool"]["coverage"]["html"]["directory"]) coverageXMLFile = Path(pyProjectSettings["tool"]["coverage"]["xml"]["output"]) coverageJSONFile= Path(pyProjectSettings["tool"]["coverage"]["json"]["output"])