Staging
v0.5.1
https://github.com/python/cpython
Revision 1af68a65194a26d959161df33fc25ade7f812009 authored by Ned Deily on 13 June 2019, 04:35:19 UTC, committed by GitHub on 13 June 2019, 04:35:19 UTC
1 parent 9393e19
Raw File
Tip revision: 1af68a65194a26d959161df33fc25ade7f812009 authored by Ned Deily on 13 June 2019, 04:35:19 UTC
[3.6] Doc fix: duplicate object description of email.message (GH-13742) (GH-14041)
Tip revision: 1af68a6
test_distutils.py
"""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
import test.support


def test_main():
    test.support.run_unittest(distutils.tests.test_suite())
    test.support.reap_children()


if __name__ == "__main__":
    test_main()
back to top