mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-16 06:17:10 +01:00
Update README.md
This commit is contained in:
parent
dc9a3b0f76
commit
2077cfca36
1 changed files with 16 additions and 3 deletions
19
README.md
19
README.md
|
|
@ -1,9 +1,13 @@
|
||||||
# Test Reporter
|
# Test Reporter
|
||||||
|
|
||||||
This [Github Action](https://github.com/features/actions) displays test results from popular testing frameworks directly in GitHub.
|
This [Github Action](https://github.com/features/actions) displays test results from popular testing frameworks directly in GitHub.
|
||||||
- [x] Parses test results in XML or JSON format and creates nice report (Github Check Run)
|
|
||||||
- [x] Annotates code where it failed based on message and stack trace captured during test execution
|
✔️ Parses test results in XML or JSON format and creates nice report as Github Check Run
|
||||||
- [x] Sets output variable conclusion to `success` if all tests passed or `failure` if any test failed
|
|
||||||
|
✔️ Annotates code where it failed based on message and stack trace captured during test execution
|
||||||
|
|
||||||
|
✔️ Provides final `conclusion` and counts of `passed`, `failed` and `skipped` tests as output parameters
|
||||||
|
|
||||||
|
|
||||||
**How it looks:**
|
**How it looks:**
|
||||||
|||||
|
|||||
|
||||||
|
|
@ -91,6 +95,15 @@ jobs:
|
||||||
token: ''
|
token: ''
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Output parameters
|
||||||
|
| Name | Description |
|
||||||
|
| :-- | :-- |
|
||||||
|
| conclusion | `success` or `failure` |
|
||||||
|
| passed | Count of passed tests |
|
||||||
|
| failed | Count of failed tests |
|
||||||
|
| skipped | Count of skipped tests |
|
||||||
|
| time | Execution time [ms] |
|
||||||
|
|
||||||
## Supported formats
|
## Supported formats
|
||||||
|
|
||||||
<details>
|
<details>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue