I can run all of my test cases in a solution file ( in DEBUG mode) by using the following command:
nunit3-console.exe "%SlnFile%" /config:Debug --skipnontestassemblies --result="%TestResult.xml%"
But this command will run for all tests under different platforms, x86
, x64
and AnyCPU
.
Is there anyway to restrict it, so that nunit3-console
only runs for DEBUG|AnyCPU
?