summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests
Commit message (Collapse)AuthorAgeFilesLines
* Issue #3925: Ignores shutil.rmtree error on cygwin too.Hirokazu Yamamoto2008-09-211-2/+2
| | | | Reviewed by Benjamin Peterson.
* Issue #2562: Fix distutils PKG-INFO writing logic to allow havingMarc-André Lemburg2008-09-031-0/+35
| | | | non-ascii characters and Unicode in setup.py meta-data.
* On Windows, we must build a debug version iff running a debug build ofThomas Heller2008-05-261-0/+4
| | | | Python
* GHOP #257: test distutils' build_ext command, written by Josip Dzolonga.Georg Brandl2008-05-181-0/+72
|
* Try setting HOME env.var to fix test on Win32Andrew M. Kuchling2008-05-111-1/+1
|
* Add message to test assertionAndrew M. Kuchling2008-05-111-1/+2
|
* #1858: re-apply patch for this, adding the missing filesAndrew M. Kuchling2008-05-113-0/+185
|
* Revert r62998 as it broke the build (seems distutils.config is missing).Brett Cannon2008-05-101-47/+0
|
* #1858 from Tarek Ziade:Andrew M. Kuchling2008-05-101-0/+47
| | | | | | | | | Allow multiple repositories in .pypirc; see http://wiki.python.org/moin/EnhancedPyPI for discussion. The patch is slightly revised from Tarek's last patch: I've simplified the PyPIRCCommand.finalize_options() method to not look at sys.argv. Tests still pass.
* Fix test_distutils to not fail when running 'make test' from a Python buildThomas Wouters2008-04-051-1/+21
| | | | | | | | | directory that is not the source directory (ie, one created using '/path/to/source/configure'.) Leaves this test very slightly degraded in that particular case, compared to the build-in-sourcedir case, but that case isn't a particularly strong test either: neither test the actual path that will be used after installing. There isn't a particularly good way to test this, and a poor test beats a failing test.
* stupid, stupid, stupid!Fred Drake2008-04-041-1/+0
|
* my previous change did what I said it should not: it changed the currentFred Drake2008-04-041-6/+48
| | | | | | | directory to the directory in which the setup.py script lived (which made __file__ wrong) fixed, with test that the script is run in the current directory of the caller
* - Issue #2385: distutils.core.run_script() makes __file__ available, so theFred Drake2008-04-041-0/+40
| | | | | controlled environment will more closely mirror the typical script environment. This supports setup.py scripts that refer to data files.
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-232-3/+0
|
* Fixed bug #1628Christian Heimes2007-12-141-1/+1
| | | | The detection now works on Unix with Makefile, Makefile with VPATH and on Windows.
* Disabled one test that is failing on UnixChristian Heimes2007-12-061-1/+2
|
* Fixed get_config_h_filename for Windows. Without the patch it can't find the ↵Christian Heimes2007-12-061-0/+36
| | | | | | pyconfig.h file inside a build tree. Added several small unit tests for sysconfig.
* SF 1668596/1720897: distutils now copies data filesNeal Norwitz2007-06-011-0/+35
| | | | | | | | even if package_dir is empty. This needs to be backported. I'm too tired tonight. It would be great if someone backports this if the buildbots are ok with it. Otherwise, I will try to get to it tomorrow.
* Whitespace normalization.Tim Peters2005-03-282-2/+2
|
* PEP 314 implementation (client side):Fred Drake2005-03-201-1/+90
| | | | added support for the provides, requires, and obsoletes metadata fields
* helper code, mostly from Andy Harrington, for PEP 314 completionFred Drake2005-03-201-0/+9
|
* Add missing executable option to DummyCommand.Martin v. Löwis2004-08-261-1/+3
|
* make sure distutils logging is shut off in tests to avoid spurious outputFred Drake2004-08-034-3/+22
|
* This allows additional commands to be provided for existing setup.pyFred Drake2004-08-031-0/+100
| | | | | | | | | | | | | | | | | scripts without modifying either the distutils installation or the setup.py scripts of packages with which the new commands will be used. Specifically, an option is added to distutils that allows additional packages to be searched for command implementations in addition to distutils.command. The additional packages can be specified on the command line or via the installation or personal configuration files already loaded by distutils. For discussion, see the thread starting with: http://mail.python.org/pipermail/distutils-sig/2004-August/004112.html This closes SF patch #102241.
* elaborate package data test to make sure get_outputs() gives the rightFred Drake2004-07-211-1/+7
| | | | | | results when byte-code compilation is requested (in particular, make sure that package data doesn't get a bogus byte-code listing generated)
* Make distutils "install --home" support all platforms.Fred Drake2004-06-251-0/+55
|
* add boilerplate so the test modules can be run as scriptsFred Drake2004-06-253-1/+9
|
* add a couple of tests for the build_scripts commandFred Drake2004-06-211-0/+74
|
* fix bug: list of data files was initialized too soon in build_pyFred Drake2004-06-171-0/+50
|
* move support code to a helper module to ease re-useFred Drake2004-06-172-34/+48
|
* add a test that actually installs some scriptsFred Drake2004-06-151-0/+56
|
* One unit test for distutils is not much, but is more than we had yesterday.Fred Drake2004-06-152-0/+81
We need to write more; hopefully the barrier is a little lower now.