summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/tests/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-41003: Fix test_copyreg when numpy is installed (GH-20935)Victor Stinner2020-06-171-7/+6
| | | | | | | | Fix test_copyreg when numpy is installed: test.pickletester now saves/restores warnings.filters when importing numpy, to ignore filters installed by numpy. Add the save_restore_warnings_filters() function to the test.support.warnings_helper module.
* bpo-40055: test_distutils leaves warnings filters unchanged (GH-20095)Victor Stinner2020-05-151-0/+6
| | | | | distutils.tests now saves/restores warnings filters to leave them unchanged. Importing tests imports docutils which imports pkg_resources which adds a warnings filter.
* Make sure each test can be run standalone (./python Lib/distutils/tests/x.py)Éric Araujo2010-11-061-2/+3
|
* One unit test for distutils is not much, but is more than we had yesterday.Fred Drake2004-06-151-0/+35
We need to write more; hopefully the barrier is a little lower now.