當我運行此:我如何讓TeamCity拿起我從Rake運行的NUnit測試?
sh "#{MBUNIT_PATH}Gallio.Echo.exe /no-echo-results src/#{dll}/bin/Debug/#{dll}.dll"
在我的Rakefile
,加利奧運行我的MbUnit的測試,並TeamCity拾起結果:d
但這:
sh "#{NUNIT_PATH}nunit-console.exe /nologo src/#{dll}/bin/Debug/#{dll}.dll"
不運行我的測試,但TeamCity沒有拿起結果:(
我第一次嘗試運行我的NUnit測試通過Gallio,但它不能檢測:(
任何測試使用TeamCity的NUnit的啓動我得到:
Failure executing test(s) on assembly nunittests.dll with NUnit 2.5.0.9122. Version 2.0 is not a compatible version.
什麼將是一個解決方案?無論我如何讓Gallio拿起我的NUnit測試,或者我如何獲得TeamCity的nunit控制檯。