I have a suite of NUnit tests and I am using Jenkins and MSBuild to run them. I have a number of test categories and sometimes I want to run just one category and other times all of them. Category parameter is provided from Jenkins.
I have a problem when I want to run all categories. If category is not provided I get this condition where: cat==
and build fails.
If category is provided everything is fine.
Is there a way to tell nunit console to run all tests categories? Something like where: cat==*
.