So I have a fairly large amount of UI tests I kick off using NUnit, and in order to control what tests are ran in what environments, we use a test list.
The test list currently contains a list of tests that are included in the test run, but I would rather it specify tests that it should no run instead since the amount is much lower and will be easier to keep up with. I use the NUnit command line runner, this is my command.
"Project\bin\KahuaLFT.dll" --testlist="Project\Main\Utilities\TestSuites\BETA.txt" --where "cat = 'Smoke'" --params "Env=BETA"
The BETA.txt lists out all the tests that will be included, but is there a way to change this so it instead ignores the tests specified in the --testlist?