I want to run NUnit on TeamCity and generate a report using dotCover. But for some reason, I canβt get a coverage report for all of my projects.
TeamCity configuration below
Teamcity: 6.5.3 NUnit: 2.5.10 .NET Runtime: Platform: x86 .NET Runtime: Version: v4.0 dotCover: bundled with TC not customized
I checked that all *.dll *.xml *.pdb are in the directory as expected, as shown below (DLL help libraries are not listed)
MY.PROJECT.A.dll MY.PROJECT.A.pdb MY.PROJECT.A.xml MY.PROJECT.B.dll MY.PROJECT.B.pdb MY.PROJECT.B.xml MY.PROJECT.C.dll MY.PROJECT.C.pdb MY.PROJECT.C.xml MY.PROJECT.Test.dll MY.PROJECT.Test.pdb MY.PROJECT.Test.xml
MY.PROJECT.Test.dll is executed using NUnit, and this assembly is excluded in the coverage report using the * Test * filter. But only MY.PROJECT.A is in the dotCover coverage report, while MY.PROJECT.B and MY.PROJECT.C not included.
I checked the log, but no error was found.
Any thoughts are greatly appreciated.
source share