Create, collect and publish junit reports for static typing.

(cherry picked from commit fb8363afdf53d6656fe020dd08f9e91d9da45565)
This commit is contained in:
Patrick Lehmann
2022-02-28 18:28:26 +01:00
parent 0a1d11d24f
commit 2d10c74d2f
4 changed files with 58 additions and 28 deletions

View File

@@ -92,11 +92,13 @@ jobs:
params = {
'python_version': pythonVersion,
'artifacts': {
'unittesting': f"{name}-TestReport",
'coverage': f"{name}-Coverage",
'typing': f"{name}-Typing",
'package': f"{name}-Package",
'doc': f"{name}-Documentation",
'unittesting': f"{name}-Unittest-Summary",
'code-coverage': f"{name}-Code-Coverage",
'typing_html': f"{name}-Typing",
'typing_junit': f"{name}-Typing-Summary",
'package': f"{name}-Package",
'doc': f"{name}-Documentation",
'doc-coverage': f"{name}-Documentation-Coverage",
}
}
print(f"::set-output name=params::{params!s}")