Adding -noappdomain option to work aroun a Mono issue

This commit is contained in:
moozzyk 2016-02-23 09:30:58 -08:00
parent 4bf99de4e4
commit 0aa39e9d29
1 changed files with 3 additions and 2 deletions

View File

@ -37,8 +37,9 @@ configuration=''
if (IsLinux) if (IsLinux)
{ {
// Work around issue with testing in parallel on Mono. // Work around issue with testing in parallel on Mono
testArgs = " -parallel none"; // and issue https://github.com/xunit/xunit/issues/158
testArgs = " -parallel none -noappdomain";
} }
var publishFolder = Path.Combine(projectFolder, "obj", "testPublish-" + framework); var publishFolder = Path.Combine(projectFolder, "obj", "testPublish-" + framework);