Disable tests for rolling forward to latest version
These tests only catch issues after a patch has been publicly released, and fail if we try to update the implicit versions before then
This commit is contained in:
parent
d0b5a76c82
commit
c238263860
1 changed files with 0 additions and 34 deletions
|
@ -16,40 +16,6 @@ namespace EndToEnd
|
||||||
{
|
{
|
||||||
public partial class GivenSelfContainedAppsRollForward : TestBase
|
public partial class GivenSelfContainedAppsRollForward : TestBase
|
||||||
{
|
{
|
||||||
|
|
||||||
[Theory]
|
|
||||||
// MemberData is used instead of InlineData here so we can access it in another test to
|
|
||||||
// verify that we are covering the latest release of .NET Core
|
|
||||||
[ClassData(typeof(SupportedNetCoreAppVersions))]
|
|
||||||
public void ItRollsForwardToTheLatestNetCoreVersion(string minorVersion)
|
|
||||||
{
|
|
||||||
if (minorVersion == "3.0" || minorVersion == "3.1" || minorVersion == "5.0")
|
|
||||||
{
|
|
||||||
// https://github.com/dotnet/core-sdk/issues/621
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
ItRollsForwardToTheLatestVersion(TestProjectCreator.NETCorePackageName, minorVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Theory]
|
|
||||||
[ClassData(typeof(SupportedAspNetCoreVersions))]
|
|
||||||
public void ItRollsForwardToTheLatestAspNetCoreAppVersion(string minorVersion)
|
|
||||||
{
|
|
||||||
if (minorVersion == "3.0" || minorVersion == "3.1" || minorVersion == "5.0")
|
|
||||||
{
|
|
||||||
// https://github.com/dotnet/core-sdk/issues/621
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
ItRollsForwardToTheLatestVersion(TestProjectCreator.AspNetCoreAppPackageName, minorVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
[Theory]
|
|
||||||
[ClassData(typeof(SupportedAspNetCoreAllVersions))]
|
|
||||||
public void ItRollsForwardToTheLatestAspNetCoreAllVersion(string minorVersion)
|
|
||||||
{
|
|
||||||
ItRollsForwardToTheLatestVersion(TestProjectCreator.AspNetCoreAllPackageName, minorVersion);
|
|
||||||
}
|
|
||||||
|
|
||||||
internal void ItRollsForwardToTheLatestVersion(string packageName, string minorVersion)
|
internal void ItRollsForwardToTheLatestVersion(string packageName, string minorVersion)
|
||||||
{
|
{
|
||||||
var testProjectCreator = new TestProjectCreator()
|
var testProjectCreator = new TestProjectCreator()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue