mirror of https://github.com/python/cpython.git
15 lines
346 B
Python
15 lines
346 B
Python
![]() |
import os.path
|
||
|
from test.support import run_unittest
|
||
|
import unittest
|
||
|
|
||
|
|
||
|
def test_main():
|
||
|
start_dir = os.path.dirname(__file__)
|
||
|
top_dir = os.path.dirname(os.path.dirname(start_dir))
|
||
|
test_loader = unittest.TestLoader()
|
||
|
run_unittest(test_loader.discover(start_dir, top_level_dir=top_dir))
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
test_main()
|