Disable xUnit tests

This is temporary. We need to rewrite the test context to ensure the
AssemblyLoadContext is used properly, since the default can no longer be
initialized.
This commit is contained in:
Andrew Schwartzmeyer 2016-06-28 19:56:47 -07:00
parent 4086644de7
commit 2e927d8155

View File

@ -367,6 +367,9 @@ function Start-PSPester {
function Start-PSxUnit {
[CmdletBinding()]param()
log "xUnit tests are currently disabled pending fixes due to API and AssemblyLoadContext changes - @andschwa"
return
if ($IsWindows) {
throw "xUnit tests are only currently supported on Linux / OS X"
}