Fix #11301 - revert workaround for test matrix
I suspect that this workaround is now causing our tests to fail, and we wanted to get rid of it anyway.
This commit is contained in:
parent
ac48ceaab2
commit
5409bd7270
|
|
@ -238,18 +238,14 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
VaryByAncmHostingModel(variants, server, tfm, type, arch, archSkip);
|
VaryByAncmHostingModel(variants, server, tfm, type, arch, archSkip);
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: remove this workaround: https://github.com/aspnet/AspNetCore/issues/11301
|
variants.Add(new TestVariant()
|
||||||
else if (string.IsNullOrEmpty(archSkip))
|
|
||||||
{
|
{
|
||||||
variants.Add(new TestVariant()
|
Server = server,
|
||||||
{
|
Tfm = tfm,
|
||||||
Server = server,
|
ApplicationType = type,
|
||||||
Tfm = tfm,
|
Architecture = arch,
|
||||||
ApplicationType = type,
|
Skip = archSkip,
|
||||||
Architecture = arch,
|
});
|
||||||
Skip = archSkip,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -291,19 +287,15 @@ namespace Microsoft.AspNetCore.Server.IntegrationTesting
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: remove this workaround: https://github.com/aspnet/AspNetCore/issues/11301
|
variants.Add(new TestVariant()
|
||||||
if (string.IsNullOrEmpty(skipAncm))
|
|
||||||
{
|
{
|
||||||
variants.Add(new TestVariant()
|
Server = server,
|
||||||
{
|
Tfm = tfm,
|
||||||
Server = server,
|
ApplicationType = type,
|
||||||
Tfm = tfm,
|
Architecture = arch,
|
||||||
ApplicationType = type,
|
HostingModel = hostingModel,
|
||||||
Architecture = arch,
|
Skip = skipAncm,
|
||||||
HostingModel = hostingModel,
|
});
|
||||||
Skip = skipAncm,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue