07-09-2025 06:54 PM
Hello,
I am trying to create a TestStand step that:
1. open a command window
2. navigate to a folder
3. run a command line (then leave the command window open)
It works for 1 and 2 with following Call_settings, but I cannot find a correct Argument Expression for 3 in TestStand.
I want to use /k "python -m hapspt.run" where /k means "run the command and keep the window open" but that "/" will not pass analysis and cause runtime error. If I just use "python -m hapspt.run" , TestStand step only did 1 and 2, but not run 3 (nothing happen)
Any suggestions are highly appreciated!
Solved! Go to Solution.
07-10-2025 12:17 AM
/k is part of the argument, isn't it?
So IMHO it should between the double quotes like "/k python -m hapspt.run"
07-10-2025 01:38 AM
Yes, it works!
Thank you for your help!