Skip to content

Instantly share code, notes, and snippets.

@thecodejunkie
Created January 19, 2011 22:17
Show Gist options
  • Save thecodejunkie/787002 to your computer and use it in GitHub Desktop.
Save thecodejunkie/787002 to your computer and use it in GitHub Desktop.
Using albacore to run multiple xunit test projects with rake
testAssemblies = FileList["src/**/Release/*.Tests.dll"].exclude(/obj\//)
testAssemblies.each do |testAssembly|
xunit :xunit do |xunit|
xunit.command = "tools/xunit/xunit.console.clr4.x86.exe"
xunit.assembly = testAssembly
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment