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"])