Running NUnit with Rake from TeamCity
I ran into some trouble when I tried to get TeamCity to run my unit tests from a rake script. After some google:ing around and trial error I got the folowing working with both command line and TeamCity: TEAMCITY_NUNIT_RUNNER = ENV["teamcity.dotnet.nunitlauncher"] NUNIT_EXE = “tools/NUnit/nunit-console.exe” OUTPUT_PATH = “output” desc “Unit tests” task :test do puts “##teamcity['progressStart' [...]