Adding -noappdomain option to work aroun a Mono issue
This commit is contained in:
parent
4bf99de4e4
commit
0aa39e9d29
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue