I am using the TeamCity VisualStudio sln configuration to control my CI build. It runs all my NUnit tests - all this is good and excellent, but I donβt want TeamCity to run any of my tests with the [Category ("DatabaseTests")] attribute (since they ended up in the actual database).
In the NUnit configuration, in categories for exclusion, I just put DatabaseTests , but it didn't work. Is there something I'm missing? Is there a way so I can see which team wants to send to nunit?
source
share