pyinstaller_pytest.main_打包

oscarforever發表於2020-06-29

問題描述:需要將用例目錄(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檔案拷貝進去才能正常執行。
目錄結構如下: