Commit dd65bfa8 authored by Marcel Amirault's avatar Marcel Amirault

Merge branch 'inorton-master-patch-63197' into 'master'

Mention CUnit in JUnit docs

See merge request gitlab-org/gitlab!33383
parents 839350e2 c1b14c4a
...@@ -192,6 +192,20 @@ cpp: ...@@ -192,6 +192,20 @@ cpp:
junit: report.xml junit: report.xml
``` ```
#### CUnit
[CUnit](https://cunity.gitlab.io/cunit/) can be made to produce [JUnit XML reports](https://cunity.gitlab.io/cunit/group__CI.html) automatically when run using its `CUnitCI.h` macros:
```yaml
cunit:
stage: test
script:
- ./my-cunit-test
artifacts:
reports:
junit: ./my-cunit-test.xml
```
### .Net example ### .Net example
The [JunitXML.TestLogger](https://www.nuget.org/packages/JunitXml.TestLogger/) NuGet The [JunitXML.TestLogger](https://www.nuget.org/packages/JunitXml.TestLogger/) NuGet
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment