summaryrefslogtreecommitdiff
path: root/distutils2/tests/test_command_register.py
Commit message (Collapse)AuthorAgeFilesLines
* Merge default?ric Araujo2012-05-211-8/+18
|\
| * Fix minor whitespace, syntax and idiom nits?ric Araujo2012-05-161-15/+7
| |
| * #13614: Merge changes from julien_courteau and PierrePaul regarding bad rstMathieu Leduc-Hamel2012-05-121-7/+8
| |
| * #13614: Raises a TypeError now if the RST description is invalidPierre Paul2012-05-121-0/+18
| |
* | Ye olde merge.?ric Araujo2011-11-121-21/+7
|\ \ | |/ | | | | | | I broke test_mixin2to3 somehow; distutils2-default is okay and packaging too, so I don?t see an obvious reason right now, I?ll investigate later.
| * Clean up mocking of stdout and stdin in tests.?ric Araujo2011-11-121-20/+5
| | | | | | | | In addition, update the create module to use logging.
| * Minor assorted cleanups.?ric Araujo2011-11-121-0/+1
| | | | | | | | | | | | | | - Remove __main__ blocks obsoleted by pysetup - Fix typo ?seperate? - Add one test that was promised but not written - Reorganize one file
* | Merge tests for #13114 from default?ric Araujo2011-10-111-0/+15
|\ \ | |/
| * Add tests for Unicode handling in check and register (#13114).?ric Araujo2011-10-111-0/+15
| | | | | | | | | | Contrary to distutils in Python 2.7, distutils2 does not have the bugs. Developing with Python 3 and porting to 2.x just rocks like that.
* | Start a branch to provide Distutils2 for Python 3.?ric Araujo2011-09-241-20/+19
|/ | | | | | | | | | This codebase is compatible with 3.1, 3.2 and 3.3. It was converted with 2to3 and a semi-automated diff/merge with packaging in 3.3 to fix some idioms. We?ve now come full circle from 2.x to 3.x to 2.x to 3.x again :) Starting from now, contributors can make patches for packaging (preferred, as the stdlib?s regrtest is very useful), distutils2 or distutils-python3, and we?ll make patches flow between versions.
* Remove display options (--name, etc.) from the Distribution class.?ric Araujo2011-09-191-1/+1
| | | | | | | | | | | These options were used to implement ?setup.py --name?, ?setup.py --version?, etc. which are now handled by the pysetup metadata action or direct parsing of the setup.cfg file. As a side effect, the Distribution class no longer accepts a 'url' key in its *attrs* argument: it has to be 'home_page' or 'home-page' to be recognized as a valid metadata field and passed down to the dist.metadata object.
* Fix backport changesets part 2: tests?ric Araujo2011-09-181-3/+6
|
* Let the test suite run again?ric Araujo2011-09-121-6/+6
|
* Fixed a python2.4 syntax errors.Alexandru Plugaru2011-08-301-5/+6
|
* Backported packaging from cpython default, overwriting previous version.Vinay Sajip2011-08-181-42/+53
|
* Fix a test following last Gael's commit.Alexis Metaireau2011-01-281-1/+1
|
* Branch merge?ric Araujo2011-01-211-1/+0
|\
| * Removed unused imports (sys, getpass).Louis Munro2010-12-081-1/+0
| |
* | Fix a test, uncover a bug, simplify other tests?ric Araujo2010-12-091-29/+13
|/
* removed core.pyTarek Ziade2010-10-251-1/+1
|
* Rename command's tests filenames to test_command_*, and install_tools.py to ↵Alexis Metaireau2010-10-041-0/+262
install.py The goal is to avoid overlaps between commands and scripts names (for instance the "install" script and the "install" command)