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