This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author chris.jerdonek
Recipients chris.jerdonek, r.david.murray, rbcollins
Date 2012-12-11.18:59:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355252349.25.0.910530265971.issue16662@psf.upfronthosting.co.za>
In-reply-to
Content
I think he's saying that a test package will never be discovered by default, because the default value of discover()'s pattern argument is test*.py:

http://hg.python.org/cpython/file/bc322469a7a8/Lib/unittest/loader.py#l152

So I think he wants package directories with names of the form test* to match by default.  The discover() docstring touches on this special case:

    If a test package name (directory with '__init__.py') matches the
    pattern then the package will be checked for a 'load_tests' function. If
    this exists then it will be called with loader, tests, pattern.
History
Date User Action Args
2012-12-11 18:59:09chris.jerdoneksetrecipients: + chris.jerdonek, rbcollins, r.david.murray
2012-12-11 18:59:09chris.jerdoneksetmessageid: <1355252349.25.0.910530265971.issue16662@psf.upfronthosting.co.za>
2012-12-11 18:59:09chris.jerdoneklinkissue16662 messages
2012-12-11 18:59:08chris.jerdonekcreate