when i run this:
sh "#{MBUNIT_PATH}Gallio.Echo.exe /no-echo-results src/#{dll}/bin/Debug/#{dll}.dll"
in my rakefile, gallio runs my mbunit tests, and TC picks up the results :D
but this:
sh "#{NUNIT_PATH}nunit-console.exe /nologo src/#{dll}/bin/Debug/#{dll}.dll"
does run my tests, but TC doesnt pick up the result :(
I first tried running my nunit tests through gallio, but it doesnt detect any tests :(
using the teamcity nunit launcher i get:
Failure executing test(s) on assembly nunittests.dll with NUnit 2.5.0.9122. Version 2.0 is not a compatible version.
Can anyone help me with a solution to this? Either how i can get gallio to pick up my nunit tests or how to get nunit-console to be picked up by tc.
Thanks