-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathaction.yml
More file actions
35 lines (32 loc) · 926 Bytes
/
action.yml
File metadata and controls
35 lines (32 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: pytest-results-actions
description: Post pytest results to the workflow summary
branding:
icon: bookmark
color: red
runs:
using: node24
main: dist/index.js
inputs:
path:
description: |
A list of JUnit XML files, directories containing the former, and wildcard
patterns to process. See @actions/glob for supported patterns.
required: true
summary:
description: Add a summary of the results at the top of the report
required: false
default: true
display-options:
description: |
Select which results should be included in the report.
Follows the same syntax as `pytest -r`
required: false
default: fEX
fail-on-empty:
description: Fail the workflow if no JUnit XML was found
required: false
default: true
title:
description: Title of the test results section in the workflow summary
required: false
default: Test results