nose
nose extends unittest to make testing easier
What it is and what it does
nose is a test runner that builds on Python's unittest framework, automating test discovery by looking for files and directories with "test" or "Test" in their names. It runs these tests and displays output similar to unittest but with the addition of captured stdout from failing tests, making print-style debugging easier. The framework is extensible through plugins that add support for doctests, code coverage, profiling, and flexible test selection.
The package has not been updated since 2015-06-02. While it remains stable and has no known security vulnerabilities, its abandonment means it will not receive bug fixes or compatibility updates for modern Python versions or testing practices. Developers should consider whether its age and lack of maintenance align with their project's long-term needs.
Use it for:
- Running tests across a codebase by automatic discovery without explicit test suite configuration
- Debugging test failures by examining captured stdout output alongside test results
- Adding code coverage or profiling to test runs through nose's plugin system
- Migrating from unittest to a more feature-rich runner without rewriting test code
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
nose extends unittest with automatic test discovery and execution, finding and running tests by naming convention with enhanced output including captured stdout from failures.
No, not for new projects. While nose is stable and has low install friction, it has been abandoned since 2015-06-02 with no maintenance or Python version updates. Existing projects already using nose may continue to do so if tests pass, but new codebases should choose a maintained testing framework.
Install
nose on PyPI
pip
pip install noseuv
uv add nosepoetry
poetry add noseInstalling nose
Before you install
Installation is straightforward with no runtime dependencies, but the package has been abandoned since its latest release on 2015-06-02. Maintenance status is a significant concern for new projects.
License in practice
Licensed under GNU LGPL (copyleft). Any derivative work or modification must be released under compatible terms; using nose in a proprietary codebase requires careful review of your distribution model.
Quickstart
pip install nose
from nose.tools import assert_equal
assert_equal(1, 1)
Verify before relying
- Whether nose remains compatible with Python versions released after 2015 without manual patching
- Current status of the GitHub repository and whether community forks are actively maintained
- How nose interacts with modern test frameworks in the same codebase
Package facts
| License | GNU LGPL (copyleft) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | abandoned — 4,091 days since the last release |
| First released | |
| Downloads | 9,973,825/month — #1,493 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: nose-1.3.7-py2-none-any.whl; nose-1.3.7-py3-none-any.whl
Keywords: test, unittest, doctest, automatic, discovery
Tags
More Testing packages
Pluggy provides a plugin system that lets you…
permissive · top 100 on PyPI
pytestpytest is a testing framework that lets you…
permissive · top 100 on PyPI
virtualenvvirtualenv creates isolated Python environments…
permissive · top 100 on PyPI
coverageCoverage.py measures which lines of Python code…
permissive · top 1,000 on PyPI
pytest-asynciopytest-asyncio is a pytest plugin that enables…
permissive · top 1,000 on PyPI
pytest-json-ctrfA pytest plugin that generates test reports in…
permissive · top 1,000 on PyPI
django-noseIntegrates the nose test runner into Django's…
permissive · top 15,000 on PyPI
nose-py3nose-py3 extends unittest with automatic test…
copyleft · top 15,000 on PyPI
nose2nose2 is a test runner that extends Python's…
permissive · top 15,000 on PyPI
pynosepynose is an updated test runner that extends…
copyleft · top 5,000 on PyPI
nosexcoverGenerates Cobertura-style XML coverage reports…
permissive · top 15,000 on PyPI
xmlrunnerA unittest test runner that exports test…
copyleft · top 15,000 on PyPI
unittest-xml-reportingA unittest test runner that exports test…
permissive · top 5,000 on PyPI
colour-runnerAdds colored output to Python's unittest test…
permissive · top 15,000 on PyPI
scripttestscripttest runs command-line applications in…
permissive · top 15,000 on PyPI
xdoctestXdoctest finds and executes test code embedded…
permissive · top 5,000 on PyPI