{"id":29016303,"url":"https://github.com/karrlab/nose2unitth","last_synced_at":"2025-06-25T22:07:56.886Z","repository":{"id":57446755,"uuid":"64345729","full_name":"KarrLab/nose2unitth","owner":"KarrLab","description":"Convert nose-style test reports to UnitTH-style test reports","archived":false,"fork":false,"pushed_at":"2020-06-26T19:42:00.000Z","size":116,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-16T13:08:59.891Z","etag":null,"topics":["nose","unit-testing","unitth"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/KarrLab.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}},"created_at":"2016-07-27T22:25:53.000Z","updated_at":"2020-06-26T19:42:03.000Z","dependencies_parsed_at":"2022-09-05T09:40:52.360Z","dependency_job_id":null,"html_url":"https://github.com/KarrLab/nose2unitth","commit_stats":null,"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/KarrLab/nose2unitth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KarrLab%2Fnose2unitth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KarrLab%2Fnose2unitth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KarrLab%2Fnose2unitth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KarrLab%2Fnose2unitth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/KarrLab","download_url":"https://codeload.github.com/KarrLab/nose2unitth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/KarrLab%2Fnose2unitth/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261960460,"owners_count":23236575,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["nose","unit-testing","unitth"],"created_at":"2025-06-25T22:07:55.888Z","updated_at":"2025-06-25T22:07:56.877Z","avatar_url":"https://github.com/KarrLab.png","language":"Python","readme":"[![PyPI package](https://img.shields.io/pypi/v/nose2unitth.svg)](https://pypi.python.org/pypi/nose2unitth)\n[![Documentation](https://readthedocs.org/projects/nose2unitth/badge/?version=latest)](http://docs.karrlab.org/nose2unitth)\n[![Test results](https://circleci.com/gh/KarrLab/nose2unitth.svg?style=shield)](https://circleci.com/gh/KarrLab/nose2unitth)\n[![Test coverage](https://coveralls.io/repos/github/KarrLab/nose2unitth/badge.svg)](https://coveralls.io/github/KarrLab/nose2unitth)\n[![Code analysis](https://api.codeclimate.com/v1/badges/e3ee777af72076166232/maintainability)](https://codeclimate.com/github/KarrLab/nose2unitth)\n[![License](https://img.shields.io/github/license/KarrLab/nose2unitth.svg)](LICENSE)\n![Analytics](https://ga-beacon.appspot.com/UA-86759801-1/nose2unitth/README.md?pixel)\n\n# nose2unitth\nConvert [nose](http://nose.readthedocs.io)-style XML test reports to [UnitTH](http://junitth.sourceforge.net/)-compatible XML reports\n\n## Example\n* [nose-style XML report](examples/nose.xml)\n* [UnitTH-style XML report](examples/unitth/1)\n* [UnitTH HTML test history report](https://cdn.rawgit.com/KarrLab/nose2unitth/master/examples/html/index.html)\n\n## Installation\n* Latest release from PyPI\n  ```\n  pip install nose2unitth\n  ```\n\n* Latest revision from GitHub\n  ```\n  pip install git+https://github.com/KarrLab/nose2unitth.git#egg=nose2unitth\n  ```\n\n## Usage\n```\n# convert nose-style reports to UnitTH-style reports\nnosetests \u003cpackage-to-test\u003e --with-xunit --xunit-file=examples/nose.xml\n\nmkdir -p examples/unitth\nnose2unitth examples/nose.xml examples/unitth/1\nnose2unitth examples/nose.xml examples/unitth/2\n\njunit2html examples/nose.xml examples/unitth/1/index.html\njunit2html examples/nose.xml examples/unitth/2/index.html\n\n# generate HTML test report\njava \\\n    -Dunitth.generate.exectimegraphs=true \\\n    -Dunitth.xml.report.filter= \\\n    -Dunitth.html.report.path=. \\\n    -Dunitth.report.dir=examples/html \\\n    -jar unitth.jar examples/unitth/*\n```\n\n## Documentation\nPlease see the documentation at [Read the Docs](http://docs.karrlab.org/nose2unitth).\n\n## Tests\n### Running the tests\n`nose` can be used to run the tests:\n```\nnosetests tests \\\n  --with-xunit --xunit-file=test-report.xml \\\n  --with-coverage --cover-package=nose2unitth\n```\n\nPlease note that additional packages are required for testing (see [tests/requirements.txt](tests/requirements.txt)).\n\n## License\nThe example model is released under the [MIT license](LICENSE).\n\n## Development team\n`nose2unitth` was developed by [Jonathan Karr](http://www.karrlab.org) at the Icahn School of Medicine at Mount Sinai in New York, USA.\n\n## Questions and comments\nPlease contact the [Jonathan Karr](http://www.karrlab.org) with any questions or comments.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarrlab%2Fnose2unitth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkarrlab%2Fnose2unitth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkarrlab%2Fnose2unitth/lists"}