nosexcover
Extends nose.plugins.cover to add Cobertura-style XML reports
What it is and what it does
nosexcover is a plugin for the nose test runner that generates Cobertura-style XML coverage reports. It wraps nose's built-in coverage plugin and outputs results to a structured XML file (coverage.xml by default) instead of or in addition to the standard text report. This format is widely recognized by CI/CD systems and code-quality dashboards for parsing and visualizing test coverage.
The plugin accepts all standard nose coverage options (like --cover-package) and adds --xcoverage-file to customize the output filename. However, the package has been abandoned since 2016 and targets only Python 2.6–3.3, making it unsuitable for modern projects. It is useful only for legacy codebases that remain on nose and older Python versions.
Use it for:
- Generate XML coverage reports from nose test runs for integration into legacy CI/CD pipelines that expect Cobertura format.
- Export coverage metrics to code-quality dashboards or SonarQube instances that parse XML coverage files.
- Maintain coverage tracking in projects still using nose and Python 2.7 without upgrading to modern test frameworks.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Generates Cobertura-style XML coverage reports as a plugin for the nose test runner, extending the built-in coverage plugin with structured output suitable for CI/CD integration.
No. The package is abandoned (last release 2016, last commit 2019) and targets unsupported Python versions (2.6–3.3). Modern projects should use pytest with pytest-cov or coverage.py directly, which support current Python versions and are actively maintained. Install only if you are maintaining a legacy nose-based project locked to Python 2.7 or early Python 3 and cannot migrate.
Install
nosexcover on PyPI
pip
pip install nosexcoveruv
uv add nosexcoverpoetry
poetry add nosexcoverInstalling nosexcover
Before you install
Low install friction with no runtime dependencies. However, the package is abandoned—last release was 2016-10-30 and last commit 2019-12-17. It targets Python 2.6–3.3, which are now unsupported. Use only if your project is locked to legacy nose and Python versions.
License in practice
BSD license (permissive) places no significant restrictions on use, modification, or distribution.
Quickstart
pip install nosexcover
nosetests --with-xcoverage --cover-package=myapp --xcoverage-file=coverage.xml
Requires nose test runner and Python 2.6–3.3; no support for modern Python versions or pytest.
Verify before relying
- Whether this plugin works with nose versions released after 2016 or with modern Python 3.x releases beyond 3.3.
- Compatibility with current CI/CD systems that may have dropped support for legacy nose and Python 2.
Package facts
| License | BSD (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | abandoned — 3,575 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 103,273/month — #12,817 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: nosexcover-1.0.11-py2.py3-none-any.whl
Tags
More Python Modules packages
Converts domain names between Unicode and…
permissive · top 100 on PyPI
setuptoolsSetuptools is a Python build backend and…
permissive · top 100 on PyPI
PyYAMLPyYAML parses and emits YAML 1.1 data format,…
permissive · top 100 on PyPI
pydanticPydantic validates Python data structures…
permissive · top 100 on PyPI
annotated-typesProvides reusable metadata objects for use with…
permissive · top 100 on PyPI
typing-inspectionProvides runtime tools to inspect and…
permissive · top 100 on PyPI
gcovrGcovr processes GCC code coverage data and…
permissive · top 5,000 on PyPI
nosenose extends unittest with automatic test…
copyleft · top 5,000 on PyPI
lcov-coberturaConverts code coverage reports from lcov format…
permissive · top 5,000 on PyPI
cov-corecov-core provides the internal plugin…
permissive · top 15,000 on PyPI
nose-py3nose-py3 extends unittest with automatic test…
copyleft · top 15,000 on PyPI
pynosepynose is an updated test runner that extends…
copyleft · top 5,000 on PyPI
unittest-xml-reportingA unittest test runner that exports test…
permissive · top 5,000 on PyPI
xmlrunnerA unittest test runner that exports test…
copyleft · top 15,000 on PyPI
junit-xml-2Generates JUnit XML test result reports from…
permissive · top 15,000 on PyPI
django-noseIntegrates the nose test runner into Django's…
permissive · top 15,000 on PyPI