我正在尝试使用 Python 脚本在 Azure DevOps 中运行 National Instruments TestStand序列分析器作为构建的一部分。代理作为服务运行。
import subprocess
command = '"%teststand%\Bin\AnalyzerApp.exe" MyAnalyzerProject.tsaproj /analyze /report /save /quit'
exit_code = subprocess.call(command, shell=True)
print(exit_code) # returns the exit status
当我手动运行它时它可以工作,但是当代理尝试运行它时它会失败:
Unhandled Exception: System.InvalidOperationException: Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.
at System.Windows.Forms.MessageBox.ShowCore(IWin32Window owner, String text, String caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options, Boolean showHelp)
at AnalyzerApp.e.a(String A_0, String A_1)
at NationalInstruments.TestStand.Utility.LaunchTestStandApplicationInNewDomain.HandleLaunchProtectedException(Exception e, String applicationName, DisplayErrorMessageDelegate displayErrorMessage)
at NationalInstruments.TestStand.Utility.LaunchTestStandApplicationInNewDomain.LaunchProtectedReturnCode(MainEntryPointDelegateWithArgsReturnCode entryPoint, String[] args, String applicationName, DisplayErrorMessageDelegate displayErrorMessage, Boolean parseArgs)
at AnalyzerApp.e.b(String[] A_0)
我尝试先使用 cmd 运行它,但取决于代理服务用户,它要么卡住,要么抛出错误 -532462766 (0xE0434352) 并将类似的条目写入事件日志。
不需要用户交互:通常对话框在分析完成时打开和关闭。我在寻找它创建的退出代码和报告文件。有没有办法让它工作?