Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 33b2d786e704b1e929fef8aeab9ab840ce840a07 authored by Benjamin Peterson on 03 December 2016, 20:38:47 UTC
python 2.7.13rc1
Tip revision: 33b2d78
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.
"""

from test import test_support
import distutils.tests


def test_main():
    test_support.run_unittest(distutils.tests.test_suite())
    test_support.reap_children()


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