Prevent MSTest from copying / deploying every dll

后端 未结 2 856
逝去的感伤
逝去的感伤 2021-02-08 06:07

When running MSTest from Visual Studio - the unit test execution time is relatively quick.

When running MSTest from the command line, with /testsettings flag - the exec

相关标签:
2条回答
  • 2021-02-08 06:30

    Have you tried disabling deployment in the test settings? When it is disabled, the tests should be run in-place rather than on copied assemblies. (See http://msdn.microsoft.com/en-us/library/ms182475.aspx for details.)

    0 讨论(0)
  • 2021-02-08 06:47

    try MSTest.exe /noisolation http://msdn.microsoft.com/en-US/library/ms182489.aspx

    0 讨论(0)
提交回复
热议问题