Pass argument or option to Unit Tests from VSTest.Console.exe
问题 I can successfully run the VS unit tests from the command line (and hence from the build on the build machine). VSTest.Console.EXE "MyTest.dll" /logger:trx /platform:x64 /inIsolation I can also filter out any required tests that I don't want to execute on a certain environment with /TestCaseFilter option: VSTest.Console.EXE "MyTest.dll" /TestCaseFilter:Name!=Verify_DigitallySigned This is needed to not to run "check if digitally signed" test(s). This way I can filter out the required set of