mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-04 05:27:55 +01:00
Create tester-junit reporter for Nette Tester tool
This commit is contained in:
parent
68967725f7
commit
63870298f5
13 changed files with 1339 additions and 1 deletions
15
README.md
15
README.md
|
|
@ -20,7 +20,7 @@ This [Github Action](https://github.com/features/actions) displays test results
|
|||
- Java / [JUnit](https://junit.org/)
|
||||
- JavaScript / [JEST](https://jestjs.io/) / [Mocha](https://mochajs.org/)
|
||||
- Python / [pytest](https://docs.pytest.org/en/stable/) / [unittest](https://docs.python.org/3/library/unittest.html)
|
||||
- PHP / [PHPUnit](https://phpunit.de/)
|
||||
- PHP / [PHPUnit](https://phpunit.de/) / [Nette Tester](https://tester.nette.org/)
|
||||
- Ruby / [RSpec](https://rspec.info/)
|
||||
- Swift / xUnit
|
||||
|
||||
|
|
@ -324,6 +324,19 @@ Some heuristic was necessary to figure out the mapping between the line in the s
|
|||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>tester-junit</summary>
|
||||
|
||||
[Nette Tester](https://tester.nette.org/) can generate JUnit XML via CLI:
|
||||
|
||||
```bash
|
||||
tester -s -o junit tests/ > reports/tester-junit.xml
|
||||
```
|
||||
|
||||
**Note:** Nette Tester's JUnit output doesn't include test suite names. The parser will use the report file name as the suite name and automatically group tests by directory structure.
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>jest-junit</summary>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue