test_distutils.py 385 B

123456789101112131415161718
  1. """Tests for distutils.
  2. The tests for distutils are defined in the distutils.tests package;
  3. the test_suite() function there returns a test suite that's ready to
  4. be run.
  5. """
  6. from test import test_support
  7. import distutils.tests
  8. def test_main():
  9. test_support.run_unittest(distutils.tests.test_suite())
  10. test_support.reap_children()
  11. if __name__ == "__main__":
  12. test_main()