diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/wheel_tester.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/wheel_tester.py b/testing/wheel_tester.py index 81f6c4a7b..ab2f14913 100644 --- a/testing/wheel_tester.py +++ b/testing/wheel_tester.py @@ -231,8 +231,10 @@ def _run_deploy_test(example, tmpdirname): suffix = "exe" if sys.platform == "win32" else "bin" + # fetch app->title from the config + app_title = parser.get("app", "title") if sys.platform != "darwin": - binary = f"{tmpdirname}/{main_file.stem}.{suffix}" + binary = f"{tmpdirname}/{app_title}.{suffix}" else: binary = f"{tmpdirname}/pyside_app_demo.app/Contents/MacOS/{main_file.stem}" |