Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 1563f164e52d886d7f5ee7019bf176c8514b0243 authored by Benjamin Peterson on 11 June 2016, 21:46:26 UTC
2.7.12 release candidate 1
Tip revision: 1563f16
test_unittest.py
import unittest.test

from test import test_support


def test_main():
    test_support.run_unittest(unittest.test.suite())
    test_support.reap_children()


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