sebor255

Results 4 comments of sebor255

I have this issue as well. Tested with python 3.11, getgauge 0.3.17. the following code results with the below error: _app = subprocess.Popen([exePath, *appArgs], shell=True)_ error: _Failed to parse c:\Repo\430_WindowsDriverInstaller\common_libs\supportLibs\steps\steps_SDK.py:...

> I am seeing this same issue on Windows 10, Python, VS code, gauge v1.1.6. I can see all the reports, still getting `Error: Tests failed` in gauge execution console...

The bug still persists. Version **0.9.2** ### Code: ``` def run_app_with_args(exePath, appArgs): if isinstance(appArgs, str): appArgs = [x.lstrip() for x in appArgs.split(",")] app = subprocess.Popen([exePath, *appArgs], shell=True) ``` ### The...