Disable implicit version tests (#10123), fix 3.0 implicit version

This commit is contained in:
Daniel Plaisted 2018-10-08 18:29:15 -07:00
parent bcfd18f155
commit 69d4d21ee5
3 changed files with 6 additions and 14 deletions

View file

@ -20,7 +20,7 @@ namespace EndToEnd
public const string AspNetCoreAppPackageName = "Microsoft.AspNetCore.App";
public const string AspNetCoreAllPackageName = "Microsoft.AspNetCore.All";
[Theory]
[Theory(Skip = "https://github.com/dotnet/cli/issues/10123")]
// 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))]
@ -29,14 +29,14 @@ namespace EndToEnd
ItRollsForwardToTheLatestVersion(NETCorePackageName, minorVersion);
}
[Theory]
[Theory(Skip = "https://github.com/dotnet/cli/issues/10123")]
[ClassData(typeof(SupportedAspNetCoreVersions))]
public void ItRollsForwardToTheLatestAspNetCoreAppVersion(string minorVersion)
{
ItRollsForwardToTheLatestVersion(AspNetCoreAppPackageName, minorVersion);
}
[Theory]
[Theory(Skip = "https://github.com/dotnet/cli/issues/10123")]
[ClassData(typeof(SupportedAspNetCoreVersions))]
public void ItRollsForwardToTheLatestAspNetCoreAllVersion(string minorVersion)
{