skillfed

nose

nose extends unittest to make testing easier

nose v1.3.7 10.0M downloads/30d#1,493 on PyPI
Copyleft license GNU LGPL Abandoned released

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 nose

uv

uv add nose

poetry

poetry add nose

Installing 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

Development Status :: 5 - Production/StableIntended Audience :: DevelopersLicense :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)Natural Language :: EnglishOperating System :: OS IndependentProgramming Language :: PythonProgramming Language :: Python :: 3Topic :: Software Development :: Testing

Tags

test runner discoveryunittest extensionautomatic test findingnose testing frameworktest discovery toolpython test runnerdoctest integration
legacyunmaintained

More Testing packages