{"id":22870639,"url":"https://github.com/andtechstudios/raccoon","last_synced_at":"2026-05-06T22:08:53.500Z","repository":{"id":115729884,"uuid":"389006283","full_name":"andtechstudios/raccoon","owner":"andtechstudios","description":"Convert Unity test results to GitLab test reports","archived":true,"fork":false,"pushed_at":"2023-03-24T00:03:33.000Z","size":104,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-25T06:47:51.725Z","etag":null,"topics":["cd","ci","gitlab","junit","nuget"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andtechstudios.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-07-24T05:08:33.000Z","updated_at":"2025-04-23T11:21:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"8e9f2d44-e64b-45cf-8f93-e699b1ee93db","html_url":"https://github.com/andtechstudios/raccoon","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/andtechstudios/raccoon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fraccoon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fraccoon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fraccoon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fraccoon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andtechstudios","download_url":"https://codeload.github.com/andtechstudios/raccoon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andtechstudios%2Fraccoon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32713883,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T19:35:05.142Z","status":"ssl_error","status_checked_at":"2026-05-06T19:35:03.996Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cd","ci","gitlab","junit","nuget"],"created_at":"2024-12-13T13:15:23.394Z","updated_at":"2026-05-06T22:08:53.466Z","avatar_url":"https://github.com/andtechstudios.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Setup\n\n### Prerequisites\n* [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/tools/global-tools)\n* Make sure [NuGet Gallery](https://nuget.org) is registered as a source in your NuGet configuration (it is by default).\n\n```shell\n$ dotnet nuget list source\nRegistered Sources:\n  1.  nuget.org [Enabled]\n      https://api.nuget.org/v3/index.json\n```\n\n### Installation\n1. Use `dotnet tool install`.\n```shell\n$ dotnet tool install --global Andtech.Raccoon\n```\n\n### Uninstallation\n1. Use `dotnet tool uninstall`.\n```shell\n$ dotnet tool uninstall --global Andtech.Raccoon\n```\n\n## Usage\n```\nraccoon \u003cfile\u003e [-o|--output \u003cpath\u003e]\n```\n\n| Parameter | Description | Remarks |\n| --- | --- | --- |\n| `file` | The XML file containing the test results. | If omitted, XML will be read from `stdin`. |\n| `-o`\u003cbr\u003e`--output` | The file to write to. | If omitted, the converted XML will be printed to `stdout`. |\n\n## Examples\nSuppose `Unity.exe` is in `PATH`. Run the following to create test results at `results.xml`:\n\n```\n$ Unity.exe -projectPath MyProject -runTests -testResults results.xml\n```\n\nNow use `raccoon` to convert the XML:\n\n```\n$ raccoon results.xml\n\u003ctestsuites\u003e\n  \u003ctestsuite\u003e\n    \u003ctestcase name=\"MathTests.TestSubtraction\" classname=\"MyTestSuite\" time=\"0.5\" /\u003e\n    \u003ctestcase name=\"MathTests.TestAddition\" classname=\"MyTestSuite\" time=\"0.25\"\u003e\n      \u003cfailure\u003eExpected: 19; But was: 21;\u003c/failure\u003e\n    \u003c/testcase\u003e\n    \u003ctestcase name=\"MathTests.Multiplication\" classname=\"MyTestSuite\" time=\"0.9\"\u003e\n      \u003cerror\u003eSystem.Exception : Exception of type 'System.Exception' was thrown.\u003c/error\u003e\n    \u003c/testcase\u003e\n  \u003c/testsuite\u003e\n\u003c/testsuites\u003e\n```\n\nOr `cat` XML test results to `raccoon`.\n\n```\n$ cat results.xml | raccoon\n\u003ctestsuites\u003e\n  \u003ctestsuite\u003e\n    \u003ctestcase name=\"MathTests.TestSubtraction\" classname=\"MyTestSuite\" time=\"0.5\" /\u003e\n  ...\n\u003c/testsuites\u003e\n```\n\n`raccoon` can also write directly to a file.\n\n```\n$ cat results.xml | raccoon --output results-gitlab.xml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandtechstudios%2Fraccoon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandtechstudios%2Fraccoon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandtechstudios%2Fraccoon/lists"}