aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/test.py
Commit message (Expand)AuthorAgeFilesLines
* Tell unittest.main not to exit, fixes #850.Ville Skyttä2016-12-071-0/+2
* Fix quantity of blank lines.stepshal2016-10-181-2/+0
* Even better, use a static methodJason R. Coombs2016-09-181-3/+3
* Extract test.install_dists and distill it with a variable extraction and fall...Jason R. Coombs2016-09-181-11/+12
* In test command, add installed eggs to PYTHONPATH when invoking tests so that...Jason R. Coombs2016-09-171-9/+48
* Fix quantity of blank lines after code object.stepshal2016-07-131-0/+2
* Extract context manager for project_on_sys_path in test commandJason R. Coombs2016-06-031-5/+16
* Always use Python 3 version of mapJason R. Coombs2016-01-161-0/+1
* Modeling after Astropy's technique for bundling libraries, the imports are no...Jason R. Coombs2015-12-311-6/+1
* Update vendoring technique to match that used for packaging. Ref #229.Jason R. Coombs2015-12-311-1/+6
* Merge with master. Ref #229.Jason R. Coombs2015-12-311-20/+39
|\
| * Make test.test_args a non-data property per Pull Request #155.Jason R. Coombs2015-11-271-1/+12
| * Remove unreachable branch.Jason R. Coombs2015-10-101-7/+6
| * Always execute tests, even if no test_suite is supplied. Fixes #446.Jason R. Coombs2015-10-101-1/+1
| * Accept a pattern argument, supplied by later versions of unittest.Jason R. Coombs2015-10-101-1/+1
| * Only include test_suite in args if one is specified. Ref #446.Jason R. Coombs2015-10-101-2/+7
| * Re-use _argv for the announcementJason R. Coombs2015-10-101-3/+3
| * Extract _argv property.Jason R. Coombs2015-10-101-1/+5
| * Just pass 'unittest' as argv[0] - the full path to the file shouldn't be rele...Jason R. Coombs2015-10-101-2/+1
| * Resolve test_suite directly rather than referencing test_argsJason R. Coombs2015-10-101-1/+1
| * Extract variable for nicer indentationJason R. Coombs2015-10-101-3/+2
| * Move value checking into its own block.Jason R. Coombs2015-10-101-4/+5
| * Calculate test_args on demand rather than setting an attribute.Jason R. Coombs2015-10-101-4/+5
| * Add EntryPoint.resolve and deprecate most usage of EntryPoint.load. Removed E...11.3Jason R. Coombs2015-01-051-1/+1
* | Merge with 10.2.1Jason R. Coombs2015-01-021-1/+1
|\|
| * Use underlying invocation of ._load directlyJason R. Coombs2014-12-311-1/+1
* | Use six for Python 2 compatibilityJason R. Coombs2014-07-051-3/+4
|/
* Remove doctests module. It is now part of Python.Jason R. Coombs2014-07-051-2/+1
* Fixed PEP 8 compliancy of the setuptools.command packageAlex Grönholm2014-06-181-17/+15
* Use PY3 and PY2 throughoutJason R. Coombs2014-05-171-5/+4
* Wrap unittest.main in a compatibility wrapper for Python 3.1 compatibility. F...3.4.2Jason R. Coombs2014-04-061-4/+7
* Extract the resolution of loader/runner classes. Allows None value to pass-th...Jason R. Coombs2014-03-301-6/+13
* Reformat to add the conventional whitespace and shorter lines.Jason R. Coombs2014-03-301-11/+13
* Apply patch based on patch in 2008 by Klaus Zimmerman. Fixes #176.Jason R. Coombs2014-03-281-2/+8
* Remove import *Jason R. Coombs2014-02-091-2/+3
* Remove unused import and excess whitespace.Jason R. Coombs2014-02-091-39/+1
* Misc. updates following 2to3 checks.Vinay Sajip2013-06-171-1/+1
* Purge modules under test from sys.modules prior to running tests. Fixes #301.Stefan H. Holek2012-10-081-0/+17
* Issue #306: Even if 2to3 is used, we build in-place under Python 2.Lennart Regebro2012-08-221-1/+1
* Add failing test for #301.Lennart Regebro2012-08-211-1/+2
* Name changes of the parameters.Lennart Regebro2009-09-221-2/+2
* Works with zope.interface now.Lennart Regebro2009-09-181-6/+22
* Fix interactions between the various "require" options,PJ Eby2008-01-191-2/+2
* Fix problem activating dependencies for tests (backport from trunk)PJ Eby2007-03-021-1/+1
* Fix ``test`` command possibly failing if an older version of the projectPJ Eby2007-02-241-12/+53
* Added ``test_loader`` keyword to support custom test loaders.PJ Eby2006-03-291-10/+10
* Fix a problem with the test loader finding the bundled doctest'sPJ Eby2006-03-291-4/+4
* Enhanced test loader to scan packages as well as modules, and callPJ Eby2006-03-281-4/+45
* Added ``tests_require`` keyword to ``setup()``, so that e.g. packagesPJ Eby2005-11-191-4/+4
* Make 'test' command work correctly with the 0.6 WorkingSet class.PJ Eby2005-07-211-12/+12