summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/support.py
Commit message (Collapse)AuthorAgeFilesLines
* - Issue #17752: Fix distutils tests when run from the installed location.doko@ubuntu.com2014-05-071-1/+1
|
* Issue #13901: Prevent test_distutils failures on OS X with --enable-shared.Ned Deily2012-02-031-2/+8
|
* Issue #12333: fix test_distutils failures under Solaris and derivatives. ↵Jesus Cea2011-09-091-0/+4
| | | | Patch by Antoine Pitrou
* Add FIXME note as a reminderÉric Araujo2011-08-261-0/+2
|
* Refactor helpers for compiling the xx module in distutils tests.Éric Araujo2011-08-251-0/+76
| | | | | | | | | | | | | | | | | I need to copy the xxmodule.c file in other tests, so I moved the support code to distutils.tests.support and improved it: - don’t skip when run from the Lib/distutils/tests directory - use proper skip machinery instead of custom print/return/test suite fiddling. I also took out the fixup_build_ext function, which is needed for tests to pass on Unix shared builds and Windows debug builds. Finally, I cleaned up a few things: - don’t remove directories in tearDown when the parent class’ tearDown has already registered the directories for removal - simplify restoration of sys.path - remove a few unused names found by pyflakes.
* taking sysconfig out of distutilsTarek Ziadé2010-01-231-0/+8
|
* Changed distutils tests to avoid environment alterationTarek Ziadé2009-10-181-3/+10
|
* forgot to commit a file in previous commit (r74994, issue #6954)Tarek Ziadé2009-09-211-0/+3
|
* #6041: sdist and register now use the check command. No more duplicate code ↵Tarek Ziadé2009-05-161-0/+20
| | | | for metadata checking
* refactored test_sysconfig so it uses test.test_support.EnvironmentVarGuardTarek Ziadé2009-05-101-0/+11
|
* added tests for the clean commandTarek Ziadé2009-03-311-2/+19
|
* Fixed #2279: distutils.sdist.add_defaults now add files listed in ↵Tarek Ziadé2009-02-161-0/+13
| | | | package_data and data_files
* Fix for #5257: refactored all tests in distutils, so they use a temporary ↵Tarek Ziadé2009-02-141-2/+2
| | | | directory.
* make sure distutils logging is shut off in tests to avoid spurious outputFred Drake2004-08-031-0/+13
|
* move support code to a helper module to ease re-useFred Drake2004-06-171-0/+41