Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: c6f13db94ac519bfc76fe72ff1a5358f68fb641d authored by Benjamin Peterson on 21 November 2015, 21:38:35 UTC
bump to 2.7.11rc1
Tip revision: c6f13db
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