summaryrefslogtreecommitdiff
path: root/distutils2/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fix stringification of final versions (#16107).?ric Araujo2012-10-271-1/+3
| | | | Report and patch by Richard Jones.
* Fix typo?ric Araujo2012-05-211-1/+1
|
* Minor simplification in one test?ric Araujo2012-05-211-1/+1
|
* Also check stderr in one test?ric Araujo2012-05-211-0/+1
|
* Fix overlooked thinkos in one test file?ric Araujo2012-05-211-3/+3
|
* Use test skip decorator instead of private module attribute?ric Araujo2012-05-211-2/+1
|
* Have pysetup read setup.cfg early to find custom commands (#14733).?ric Araujo2012-05-211-8/+34
| | | | | Independently found and fixed by me (with help from Luis Rojas) and Janusz Lewandowski.
* Tighten tests for #13399?ric Araujo2012-05-201-8/+8
|
* Factor out repeated code used to call pysetup from tests.?ric Araujo2012-05-201-25/+17
| | | | | | | | The whole assert_python_* business was unfriendly for readers, now the code needed to have the equivalent of pysetup run from tests is moved to helper methods and the tests can have much clearer code. Also remove Python 2.4 compatibility (using -c instead of -m).
* make sure the existing metadata Provides field is translated when ↵Tarek Ziade2012-05-161-6/+39
| | | | translating an old PKG-INFO
* Merge further changes by Montreal sprinters?ric Araujo2012-05-161-0/+30
|\
| * Now deleting build-scripts directory before creating it. No more leftovers.Pierre Paul2012-05-141-0/+35
| |
* | Harmonize error messages and add one missing test for #13339?ric Araujo2012-05-161-12/+21
| |
* | Fix minor whitespace, syntax and idiom nits?ric Araujo2012-05-165-30/+26
|/
* Merge commitPierre Paul2012-05-123-73/+39
|\
| * #13399: Fixes the invalid arguments handlingPatrice Gauthier2012-05-121-1/+31
| |
| * #13614: Merge changes from julien_courteau and PierrePaul regarding bad rstMathieu Leduc-Hamel2012-05-122-72/+8
| |
* | Now creating scripts everytime when build_scripts is called, as a side ↵Pierre Paul2012-05-121-4/+23
|/ | | | effect, --force option has been removed
* Only run specific test if docutils is installedMathieu Leduc-Hamel2012-05-122-2/+9
|
* MergePierre Paul2012-05-123-3/+49
|\
| * merge #1364Julien Courteau2012-05-122-3/+40
| |\
| | * #13166: Implement __str__ on Distribution and EggInfoDistribution, use for ↵Guillaume Pratte2012-04-211-3/+18
| | | | | | | | | | | | pysetup list, pysetup graph and installation log
| | * #14270: Fixes to add dest_dir params working when using install_from_infosMathieu Leduc-Hamel2012-04-211-0/+22
| | |
| * | fix: setup.py register fails if description has ReST uncompatible with ↵Julien Courteau2012-04-211-0/+9
| |/ | | | | | | Sphinx (#13614)
* | #13614: Raises a TypeError now if the RST description is invalidPierre Paul2012-05-122-0/+83
|/
* Merge Yannick?s test into main repo?ric Araujo2012-04-211-0/+13
|\
| * improved the test coverage on commands.bdistYannick Gingras2010-12-091-1/+13
| |
* | Fix winreg imports; we are not using a single codebase?ric Araujo2012-03-141-4/+1
| |
* | mergedTarek Ziade2012-03-131-1/+4
|\ \
| * | Fix ImportError in testJason R. Coombs2012-03-131-1/+4
| | |
* | | fix for 14294Preston Holmes2012-03-132-1/+26
|/ /
* | switching to use_egg_info by defaultTarek Ziade2012-03-131-18/+31
| |
* | changed the metadata behavior so the version does not get set all the timeTarek Ziade2012-03-121-6/+19
| |
* | fixed a test mock issue (#14268)Tarek Ziade2012-03-121-3/+3
| |
* | Removed the trailing zero wiping (#14264)Tarek Ziade2012-03-121-2/+8
| |
* | Fixed a function name lookup in distutils2.pypi.wrapper (#14263)Tarek Ziade2012-03-121-0/+37
| |
* | Fix comparison bug with 'rc' versions (#11841)?ric Araujo2012-02-271-0/+9
| |
* | Fix bugs with MANIFEST.in parsing on Windows (#6884).?ric Araujo2012-02-272-36/+105
| | | | | | | | | | | | | | | | | | These regex changes fix a number of issues on Windows: - #6884: impossible to include a file starting with 'build' - #9691 and #14004: sdist includes too many files - #13193: test_manifest failures Thanks to Nadeem Vawda for his help.
* | Add test for util.set_platform (#13974).?ric Araujo2012-02-161-0/+5
| | | | | | | | Patch by Tshepang Lekhonkhobe.
* | Fix for shared builds?ric Araujo2012-02-151-1/+2
| |
* | Fix parsing of build_ext --libraries option (#1326113)?ric Araujo2012-02-151-6/+6
| |
* | Use sys.version_info instead of sys.version.?ric Araujo2012-02-096-15/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | The contents of this attribute are an implementation detail, as documented for #9442, so we should not parse it, to support non-CPython VMs in the future. Unfortunately, one use comes directly from PEP 345, so an edit will have to be agreed before fixing the code (see comment in d2.markers). Other remaining uses are found in d2.compiler and could be replaced by the platform module (which also parses sys.version, but then it wouldn?t be my fault :)
* | Add fixup for compiling C in tests with an uninstalled Python (2.7)?ric Araujo2012-02-091-1/+8
| |
* | Branch merge?ric Araujo2012-02-092-7/+31
|\ \
| * | More boolean tests for metadata environment markers?ric Araujo2012-02-091-3/+7
| | |
| * | Group commands by topic in ?pysetup run --list-commands? output.?ric Araujo2012-02-091-4/+24
| | | | | | | | | | | | | | | | | | This fixes a regression from distutils, where ?setup.py --help-commands? prints out commands grouped by topic (i.e. building vs. installing), which is more useful than using sorted.
* | | Start improving 2to3 code (#13462).?ric Araujo2012-02-094-188/+80
|/ / | | | | | | | | | | - Change the fixers used in tests to something not provided by lib2to3 - Test conversion of doctests in text files - Factor out test boilerplate into a common method
* | Stop converting package_data to extra_files in pysetup create (#13712).?ric Araujo2012-02-051-13/+12
| | | | | | | | | | | | | | pysetup create used to convert package_data from an existing setup.py into extra_files, but these files are only present in sdists, not installed: they don?t have the same use case at all, so converting one into the other did not work.
* | Allow multiple values for package_data in setup.cfg (#11805).?ric Araujo2012-02-051-7/+30
| | | | | | | | | | | | | | | | | | | | Even though the resources system obsoletes data_files and package_data (see bug discussion), package_data still exists to allow compatibility with distutils and thus an easier transition. In setup.py, the values are lists of glob patterns, so the setup.cfg syntax needed a way to express multiple values too. Reported by Erik Bray.
* | Improve one test, remove a setuptoolism in another?ric Araujo2012-02-052-6/+14
| |