summaryrefslogtreecommitdiff
path: root/setuptools
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | 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 ↵Jason R. Coombs2015-10-101-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | relevant
* | | | | | | | | 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
| | | | | | | | |
* | | | | | | | | Backed out changeset 38b415c244b8Jason R. Coombs2015-09-271-5/+1
| | | | | | | | |
* | | | | | | | | Extract _requirement_spec method for rendering the requirement specification ↵Jason R. Coombs2015-09-271-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for scripts. Ref #439.
* | | | | | | | | Bumped to 18.3.3 in preparation for next release.Jason R. Coombs2015-09-191-1/+1
| | | | | | | | |
* | | | | | | | | Bumped to 18.3.2 in preparation for next release.18.3.2Jason R. Coombs2015-09-191-1/+1
| | | | | | | | |
* | | | | | | | | Only return results that are files. Fixes failing test and corrects ↵Jason R. Coombs2015-09-191-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | additional regression in 18.3.
* | | | | | | | | MergeJason R. Coombs2015-09-194-37/+87
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Bumped to 18.3.1 in preparation for next release.18.3.1Jason R. Coombs2015-09-071-1/+1
| | | | | | | | | |
| * | | | | | | | | Another refactor of findall, this time separating the simple walk / join ↵Jason R. Coombs2015-09-071-11/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | operation from the conditional relative path.
| * | | | | | | | | Restore old behavior for calculating the base. Fixes failing test and fixes ↵Jason R. Coombs2015-09-061-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #425.
| * | | | | | | | | MergeJason R. Coombs2015-09-063-35/+74
| |\ \ \ \ \ \ \ \ \
| | * | | | | | | | | Bumped to 18.4 in preparation for next release.Jason R. Coombs2015-09-061-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Extract version handling as a separate methodJason R. Coombs2015-09-061-5/+12
| | | | | | | | | | |
| | * | | | | | | | | Adds #257, pip style versionAbsoluteMSTR/adds-257-pip-style-version-1441051798003Ankur Dedania2015-08-311-1/+3
| | | | | | | | | | |
| | * | | | | | | | | Use relpath to produce results relative to 'dir'Jason R. Coombs2015-08-301-8/+3
| | | | | | | | | | |
| | * | | | | | | | | Replace initialize/inject loop with a list comprehensionJason R. Coombs2015-08-301-9/+16
| | | | | | | | | | |
| | * | | | | | | | | Add reference to bug reportJason R. Coombs2015-08-301-1/+1
| | | | | | | | | | |
| | * | | | | | | | | Prefer preceding line commentsJason R. Coombs2015-08-301-2/+4
| | | | | | | | | | |
| | * | | | | | | | | Allow dict.update to do the iterationJason R. Coombs2015-08-301-2/+1
| | | | | | | | | | |
| | * | | | | | | | | Replace comment with docstring. Fixes #423Jason R. Coombs2015-08-301-1/+4
| | | | | | | | | | |
| | * | | | | | | | | Allow dict.update to do the iterationJason R. Coombs2015-08-301-3/+2
| | | | | | | | | | |
| | * | | | | | | | | Allow disabling of the sys.path rewrite technique using an environment variable.Jason R. Coombs2015-08-191-1/+2
| | | | | | | | | | |
| | * | | | | | | | | Extract a class for the behavior that rewrites the sys.pathJason R. Coombs2015-08-191-20/+30
| | | | | | | | | | |
| | * | | | | | | | | Calculate prelude and postlude earlyJason R. Coombs2015-08-191-16/+17
| | | | | | | | | | |
| | * | | | | | | | | Open file in context managerJason R. Coombs2015-08-191-3/+2
| | | | | | | | | | |
| | * | | | | | | | | Extract method for wrapping linesJason R. Coombs2015-08-191-8/+22
| | | | | | | | | | |
| | * | | | | | | | | Do join lateJason R. Coombs2015-08-191-4/+3
| | | | | | | | | | |
| | * | | | | | | | | Extract variableJason R. Coombs2015-08-191-1/+2
| | | | | | | | | | |
| | * | | | | | | | | Bumped to 18.3 in preparation for next release.Jason R. Coombs2015-08-191-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Update docstring and test to match long-standing expectation in behavior.Jason R. Coombs2015-09-062-2/+4
| | | | | | | | | | |
* | | | | | | | | | | Add another test capturing issue described in http://bugs.python.org/issue12885Jason R. Coombs2015-09-191-0/+23
|/ / / / / / / / / /
* | | | | | | | | | Add tests capturing expected behavior, including failure to match ↵Jason R. Coombs2015-09-061-0/+24
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | expectation indicated in docstring.
* | | | | | | | | Remove unused _all_dirs. Prefer 'candidate' to 'suitable'. Update documentation.Jason R. Coombs2015-08-071-15/+8
| | | | | | | | |
* | | | | | | | | Merged in spookylukey/setuptools (pull request #140)Jason R. Coombs2015-08-071-1/+1
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Big performance fix for find_packages by ignoring hidden dirs earlier
| * | | | | | | | | Bumped to 18.2 in preparation for next release.Jason R. Coombs2015-08-021-1/+1
| | | | | | | | | |
| * | | | | | | | | Bumped to 18.1 in preparation for next release.18.1Jason R. Coombs2015-08-021-1/+1
| | | | | | | | | |
* | | | | | | | | | Big performance fix for find_packages by ignoring hidden dirs earlierLuke Plant2015-07-201-2/+12
|/ / / / / / / / /
* | | | | | | | | Bumped to 18.0.2 in preparation for next release.Jason R. Coombs2015-06-241-1/+1
| | | | | | | | |
* | | | | | | | | Bumped to 18.0.1 in preparation for next release.18.0.1Jason R. Coombs2015-06-241-1/+1
| | | | | | | | |
* | | | | | | | | Conditionally remove __PYVENV_LAUNCHER__Jason R. Coombs2015-06-231-1/+1
| | | | | | | | |
* | | | | | | | | Bumped to 18.1 in preparation for next release.Jason R. Coombs2015-06-231-1/+1
| | | | | | | | |