summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_build_scripts.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-92584: Remove the distutils package (#99061)Victor Stinner2022-11-031-112/+0
| | | | | | | | | | | | Remove the distutils package. It was deprecated in Python 3.10 by PEP 632 "Deprecate distutils module". For projects still using distutils and cannot be updated to something else, the setuptools project can be installed: it still provides distutils. * Remove Lib/distutils/ directory * Remove test_distutils * Remove references to distutils * Skip test_check_c_globals and test_peg_generator since they use distutils
* bpo-5846: Do not use obsolete unittest functions. (GH-28303)Serhiy Storchaka2021-09-131-1/+1
| | | | Get rid of use of makeSuite() and findTestCases(). Also make test_math and test_threading_local discoverable.
* Issue #19600: Use specific asserts in distutils tests.Serhiy Storchaka2013-11-161-4/+4
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-061-1/+2
|
* Always close files in distutils code and tests (#10252).Éric Araujo2010-11-051-2/+4
|
* reverted distutils its 3.1 state. All new work is now happening in ↵Tarek Ziadé2010-07-221-3/+3
| | | | disutils2, and distutils is now feature-frozen.
* Merged revisions 77704,77752 via svnmerge fromTarek Ziadé2010-01-291-3/+3
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77704 | tarek.ziade | 2010-01-23 10:23:15 +0100 (Sat, 23 Jan 2010) | 1 line taking sysconfig out of distutils ........ r77752 | tarek.ziade | 2010-01-26 00:19:56 +0100 (Tue, 26 Jan 2010) | 1 line switched the call order so this call works without suffering from issue #7774 ........
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-5/+5
|
* Merged revisions 71884 via svnmerge fromTarek Ziadé2009-04-251-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71884 | tarek.ziade | 2009-04-25 14:51:59 +0200 (Sat, 25 Apr 2009) | 1 line #5810: Fixed Distutils test_build_scripts ........
* Merged revisions 69598 via svnmerge fromTarek Ziadé2009-02-131-0/+28
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r69598 | tarek.ziade | 2009-02-14 00:00:43 +0100 (Sat, 14 Feb 2009) | 1 line Fixed #4524: distutils build_script command failed with --with-suffix=3 ........
* 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-031-1/+3
|
* add boilerplate so the test modules can be run as scriptsFred Drake2004-06-251-0/+3
|
* add a couple of tests for the build_scripts commandFred Drake2004-06-211-0/+74