How to get TeamCity to exclude nunit test categories? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T16:29:16Zhttp://stackoverflow.com/feeds/question/923245http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/923245/how-to-get-teamcity-to-exclude-nunit-test-categories0How to get TeamCity to exclude nunit test categories?George Mauer2009-05-28T21:14:39Z2009-05-28T21:42:19Z
<p>I am using the TeamCity VisualStudio sln configuration to drive my CI build. It runs all my NUnit tests - which is all well and great but I don't want TeamCity running any of my tests with the [Category("DatabaseTests")] attribute (since they hit an actual database).</p>
<p>In the NUnit configuration under categories to exclude I put simply <strong>DatabaseTests</strong> but its not working. Is there something I'm missing? Is there a way that I can see what teamcity is sending to the nunit runner?</p>
http://stackoverflow.com/questions/923245/how-to-get-teamcity-to-exclude-nunit-test-categories/923356#9233561Answer by Nick DeVore for How to get TeamCity to exclude nunit test categories?Nick DeVore2009-05-28T21:42:19Z2009-05-28T21:42:19Z<p>You can turn on DEBUG mode:</p>
<blockquote>
<p>to enable 'DEBUG' log level for TeamCity classes. To do it, edit the logs/teamcity-
(server|agent)-log4j.xml file by
removing all the lines containing
comment. After that,
DEBUG messages will go to
teamcity-*.log files.</p>
<p>Make sure the logs are rotated by
default. When debug is enabled it
makes sense to increase maxBackupIndex
value in the relevant appender tag to
10 or even 20 files (ensure there is
sufficient free disk space available).</p>
</blockquote>
<p>...which I got from their <a href="http://www.jetbrains.net/confluence/display/TCD4/Reporting%2BIssues" rel="nofollow">docs</a> here. And then you can see what is happening.</p>