1a5f9918aSopenharmony_ci 2a5f9918aSopenharmony_ci 3a5f9918aSopenharmony_ciif __name__ == '__main__': 4a5f9918aSopenharmony_ci import sys, os, distutils.util 5a5f9918aSopenharmony_ci build_lib = 'build/lib' 6a5f9918aSopenharmony_ci build_lib_ext = os.path.join('build', 'lib.{}-{}.{}'.format(distutils.util.get_platform(), *sys.version_info)) 7a5f9918aSopenharmony_ci sys.path.insert(0, build_lib) 8a5f9918aSopenharmony_ci sys.path.insert(0, build_lib_ext) 9a5f9918aSopenharmony_ci import test_yaml_ext, test_appliance 10a5f9918aSopenharmony_ci test_appliance.run(test_yaml_ext) 11a5f9918aSopenharmony_ci 12