# Buildsheet autogenerated by ravenadm tool -- Do not edit. NAMEBASE= python-nose VERSION= 1.3.7 KEYWORDS= python VARIANTS= py38 py37 SDESC[py37]= Extends unittest to make testing easier (PY37) SDESC[py38]= Extends unittest to make testing easier (PY38) HOMEPAGE= http://readthedocs.org/docs/nose/ CONTACT= Python_Automaton[python@ironwolf.systems] DOWNLOAD_GROUPS= main SITES[main]= PYPI/n/nose DISTFILE[1]= nose-1.3.7.tar.gz:main DF_INDEX= 1 SPKGS[py37]= single SPKGS[py38]= single OPTIONS_AVAILABLE= PY38 PY37 OPTIONS_STANDARD= none VOPTS[py37]= PY38=OFF PY37=ON VOPTS[py38]= PY38=ON PY37=OFF DISTNAME= nose-1.3.7 GENERATED= yes [PY37].USES_ON= python:py37 [PY38].USES_ON= python:py38 [FILE:1086:descriptions/desc.single] nose extends the test loading and running features of unittest, making it easier to write, find and run tests. By default, nose will run tests in files or directories under the current working directory whose names include "test" or "Test" at a word boundary (like "test_this" or "functional_test" or "TestClass" but not "libtest"). Test output is similar to that of unittest, but also includes captured stdout output from failing tests, for easy print-style debugging. These features, and many more, are customizable through the use of plugins. Plugins included with nose provide support for doctest, code coverage and profiling, flexible attribute-based test selection, output capture and more. More information about writing plugins may be found on in the nose API documentation, here: http://readthedocs.org/docs/nose/ If you have recently reported a bug marked as fixed, or have a craving for the very latest, you may want the development version instead: https://github.com/nose-devs/nose/tarball/master#egg=nose-dev [FILE:96:distinfo] f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98 280488 nose-1.3.7.tar.gz [FILE:675:patches/patch-setup.py] --- setup.py.orig 2015-06-02 08:43:31 UTC +++ setup.py @@ -30,7 +30,6 @@ try: entry_points = { 'console_scripts': [ 'nosetests = nose:run_exit', - 'nosetests%s = nose:run_exit' % py_vers_tag, ], 'distutils.commands': [ ' nosetests = nose.commands:nosetests', @@ -106,7 +105,6 @@ setup( license = 'GNU LGPL', keywords = 'test unittest doctest automatic discovery', url = 'http://readthedocs.org/docs/nose/', - data_files = [('man/man1', ['nosetests.1'])], package_data = {'': ['*.txt', 'examples/*.py', 'examples/*/*.py']},