问题描述:需要将用例目录 (test_case) 下的 test_case1.py,test_case2.py,test_case3.py......等文件进行打包目前只能将主入口文件 Auto_Runner_Api_Main.py 打包生成对应的 Auto_Runner_Api_Main.exe 文件
现状:打包完成的 Auto_Runner_Api_Main.exe 文件 在运行时需要依赖具体的 test_case1.py,test_case2.py,test_case3.py.....文件才能正常运行,需要将 api_interface 目录一并与生成的可执行文件放一起才能正常运行。
预期结果:能否将子目录下的 test_case1.py,test_case2.py,test_case3.py.....等多个文件也一并打包进去,生成一个可执行文件,不需要再将源 test_casexx.py 文件拷贝进去才能正常运行。
目录结构如下: