1import os.path 2import unittest 3from test import support 4 5if support.PGO: 6 raise unittest.SkipTest("test is not helpful for PGO") 7 8def load_tests(*args): 9 return support.load_package_tests(os.path.dirname(__file__), *args) 10