2004-06-15 15:49:46 +00:00
|
|
|
"""Tests for distutils.
|
|
|
|
|
|
|
|
|
|
The tests for distutils are defined in the distutils.tests package;
|
|
|
|
|
the test_suite() function there returns a test suite that's ready to
|
|
|
|
|
be run.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
import distutils.tests
|
2008-05-20 21:35:26 +00:00
|
|
|
import test.support
|
2022-01-20 04:43:49 +03:00
|
|
|
import unittest
|
2004-06-15 15:49:46 +00:00
|
|
|
|
2020-01-27 04:08:39 -08:00
|
|
|
def load_tests(*_):
|
|
|
|
|
# used by unittest
|
|
|
|
|
return distutils.tests.test_suite()
|
|
|
|
|
|
|
|
|
|
|
2021-09-20 09:34:52 +03:00
|
|
|
def tearDownModule():
|
|
|
|
|
test.support.reap_children()
|
|
|
|
|
|
|
|
|
|
|
2004-06-15 15:49:46 +00:00
|
|
|
if __name__ == "__main__":
|
2021-09-20 09:34:52 +03:00
|
|
|
unittest.main()
|