summaryrefslogtreecommitdiff
path: root/Lib/distutils/tests/test_check.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-92584: Remove the distutils package (#99061)Victor Stinner2022-11-031-163/+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.
* bpo-31292: Fixed distutils check --restructuredtext for include directives ↵Philipp A2019-03-271-1/+15
| | | | | | (GH-10605)
* Issue #28222: Don't fail if pygments is not availableBerker Peksag2016-10-041-2/+14
| | | | | | We can't just skip the test if docutils is available, but pygments is not because the purpose of the test was testing a bug in _check_rst_data().
* fix parsing reST with code or code-block directives (closes #23063)Benjamin Peterson2015-01-141-0/+31
| | | | Patch by Marc Abramowitz.
* Issue #19492: Silently skipped distutils tests now reported as skipped.Serhiy Storchaka2013-12-181-4/+2
|
* Add tests for Unicode handling in distutils’ check and register (#13114)Éric Araujo2011-10-091-2/+11
|
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-7/+7
|
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-061-1/+2
|
* Merged revisions 71674 via svnmerge fromTarek Ziadé2009-04-171-9/+8
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71674 | tarek.ziade | 2009-04-17 16:29:56 +0200 (Fri, 17 Apr 2009) | 1 line DistutilsSetupError was not raised when one single warning occured ........
* Merged revisions 71478 via svnmerge fromTarek Ziadé2009-04-111-0/+7
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71478 | tarek.ziade | 2009-04-11 17:14:17 +0200 (Sat, 11 Apr 2009) | 1 line testing a full check case ........
* Merged revisions 71473 via svnmerge fromTarek Ziadé2009-04-111-0/+92
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71473 | tarek.ziade | 2009-04-11 16:55:07 +0200 (Sat, 11 Apr 2009) | 1 line #5732: added the check command into Distutils ........