Skip to content

Commit d190b1a

Browse files
committed
Update documentation according to latest changes - part 2.
1 parent 055863e commit d190b1a

File tree

2 files changed

+187
-133
lines changed

2 files changed

+187
-133
lines changed

.github/workflows/PublishCoverageResults.yml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,31 @@ on:
3838
required: false
3939
default: 'pyproject.toml'
4040
type: string
41+
coverage_report_xml:
42+
description: 'Directory containing the XML coverage report file.'
43+
required: false
44+
default: >-
45+
{ "directory": "report/coverage",
46+
"filename": "coverage.xml",
47+
"fullpath": "report/coverage/coverage.xml"
48+
}
49+
type: string
50+
coverage_report_json:
51+
description: 'Directory containing the JSON coverage report file.'
52+
required: false
53+
default: >-
54+
{ "directory": "report/coverage",
55+
"filename": "coverage.json",
56+
"fullpath": "report/coverage/coverage.json"
57+
}
58+
type: string
59+
coverage_report_html:
60+
description: 'HTML root directory of the generated coverage report.'
61+
required: false
62+
default: >-
63+
{ "directory": "report/coverage/html"
64+
}
65+
type: string
4166
coverage_sqlite_artifact:
4267
description: 'Name of the SQLite coverage artifact.'
4368
required: false
@@ -48,41 +73,16 @@ on:
4873
required: false
4974
default: ''
5075
type: string
51-
coverage_report_xml:
52-
description: 'Directory containing the XML coverage report file.'
53-
required: false
54-
default: 'report/coverage'
55-
type: string
56-
# coverage_report_xml_filename:
57-
# description: 'Filename of the XML coverage report file.'
58-
# required: false
59-
# default: 'coverage.xml'
60-
# type: string
6176
coverage_json_artifact:
6277
description: 'Name of the JSON coverage artifact.'
6378
required: false
6479
default: ''
6580
type: string
66-
coverage_report_json:
67-
description: 'Directory containing the JSON coverage report file.'
68-
required: false
69-
default: 'report/coverage'
70-
type: string
71-
# coverage_report_json_filename:
72-
# description: 'Filename of the JSON coverage report file.'
73-
# required: false
74-
# default: 'coverage.json'
75-
# type: string
7681
coverage_html_artifact:
7782
description: 'Name of the HTML coverage artifact.'
7883
required: false
7984
default: ''
8085
type: string
81-
coverage_report_html:
82-
description: 'HTML root directory of the generated coverage report.'
83-
required: false
84-
default: 'report/coverage/html'
85-
type: string
8686
codecov:
8787
description: 'Publish merged coverage report to Codecov.'
8888
required: false

0 commit comments

Comments
 (0)