Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testing/wheel_tester.py')
-rw-r--r--testing/wheel_tester.py4
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}"