Skip to content

Instantly share code, notes, and snippets.

@jincod
Created October 26, 2012 17:59
Show Gist options
  • Save jincod/3960319 to your computer and use it in GitHub Desktop.
Save jincod/3960319 to your computer and use it in GitHub Desktop.
Run NUnit tests from psake
task Tests {
$tests = (Get-ChildItem $BinDir -Recurse -Include *Tests.dll)
& $nunit /noshadow /xml:"$BinDir\Tests.nunit.xml" $tests
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment