从命令行运行测试时如何强制 mstest 结果覆盖结果文件
当我第二次使用 /resultsfile:"file_name.trx" 时,我想通过命令行运行 mstest,因为该文件已经存在,所以它不会运行。
我如何使用相同的文件名并简单地覆盖现有的 trx 文件。
I want to run the mstest via command line when i'm using /resultsfile:"file_name.trx" on the second time it will not run because the file is already exist.
How can i use the same file-name and simply override the existent trx file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用的方法是在构建脚本中添加逻辑,以在测试运行之前删除文件。
The approach I've used is to add logic into my build script to delete the file before the test is run.