aboutsummaryrefslogtreecommitdiffstats
path: root/testing/wheel_tester.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/wheel_tester.py')
-rw-r--r--testing/wheel_tester.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/testing/wheel_tester.py b/testing/wheel_tester.py
index 9931f178e..4705fcdee 100644
--- a/testing/wheel_tester.py
+++ b/testing/wheel_tester.py
@@ -235,8 +235,8 @@ def test_nuitka(example):
tmpdirname = tempfile.mkdtemp()
try:
os.chdir(tmpdirname)
- cmd = [sys.executable, "-m", "nuitka", "--run", example]#, "--standalone"]
- exit_code = run_process(cmd)
+ cmd = [sys.executable, "-m", "nuitka", "--run", example] # , "--standalone"]
+ _ = run_process(cmd)
result = True
except RuntimeError as e:
print(str(e))
@@ -315,7 +315,6 @@ def prepare_build_folder(src_path, build_folder_name):
def try_build_examples():
examples_dir = get_examples_dir()
-
# Disabled PyInstaller until it supports PySide 6
if False:
# But because it is most likely to break, we put it here for now.