Traditionally, nunit-console.exe
has been included in the repository and on the build server (or any other machine) this EXE was called from some build script.
Now that the NUnit.Runners package is available I wonder how this could be used from a psake build script. It is a solution-level package so it doesn't leave any trace in packages.config
and cannot be auto-restored as other project-level packages so I guess one would need to call Install-Package
from the psake script, wait for the download and then execute the unit tests? Hopefully this download can be run only once and it will not slow down the build every time it runs. Or will it?
packages
folder but that will probably come only in some future version of NuGet.) – Bewilderment