mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-04 04:05:22 -08:00
Update README.md
This commit is contained in:
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>
|
||||||
|
|||||||
Reference in New Issue
Block a user