summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/test_install_scripts.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-92584: Remove the distutils package (#99061)Victor Stinner2022-11-031-82/+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-5/+5
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-061-1/+2
|
* Of course, I forgot one file in r86223.Éric Araujo2010-11-051-2/+4
|
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-7/+7
|
* 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-1/+3
|
* move support code to a helper module to ease re-useFred Drake2004-06-171-34/+7
|
* 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-151-0/+46
We need to write more; hopefully the barrier is a little lower now.