Skip to content

Commit de701df

Browse files
nagilsongithub-actions
authored andcommitted
skip the theories instead of copying param names
we will still find this in search and with the history of test-debt label. Lets just do this temporary workaround
1 parent 5a85183 commit de701df

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/Microsoft.NET.Build.Containers.IntegrationTests/EndToEndTests.cs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -796,9 +796,10 @@ public void EndToEnd_SingleArch_NoRid()
796796
processResultX64.Should().Pass().And.HaveStdOut("Hello, World!");
797797
}
798798

799+
/**
799800
[InlineData("endtoendmultiarch-localregisty")]
800801
[InlineData("myteam/endtoendmultiarch-localregisty")]
801-
[DockerIsAvailableAndSupportsArchTheory("linux/arm64", checkContainerdStoreAvailability: true)]
802+
[DockerIsAvailableAndSupportsArchTheory(Skip = "https://github.com/dotnet/sdk/issues/49502", "linux/arm64", checkContainerdStoreAvailability: true)]
802803
public void EndToEndMultiArch_LocalRegistry(string imageName)
803804
{
804805
string tag = "1.0";
@@ -853,6 +854,7 @@ public void EndToEndMultiArch_LocalRegistry(string imageName)
853854
// Cleanup
854855
newProjectDir.Delete(true);
855856
}
857+
*/
856858

857859
[DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49502")]
858860
public void MultiArchStillAllowsSingleRID()
@@ -977,9 +979,10 @@ private DirectoryInfo CreateNewProject(string template, [CallerMemberName] strin
977979
private string GetPublishArtifactsPath(string projectDir, string rid, string configuration = "Debug")
978980
=> Path.Combine(projectDir, "bin", configuration, ToolsetInfo.CurrentTargetFramework, rid, "publish");
979981

982+
/**
980983
[InlineData("endtoendmultiarch-archivepublishing")]
981984
[InlineData("myteam/endtoendmultiarch-archivepublishing")]
982-
[DockerIsAvailableAndSupportsArchTheory("linux/arm64", checkContainerdStoreAvailability: true)]
985+
[DockerIsAvailableAndSupportsArchTheory(Skip = "https://github.com/dotnet/sdk/issues/49502", "linux/arm64", checkContainerdStoreAvailability: true)]
983986
public void EndToEndMultiArch_ArchivePublishing(string imageName)
984987
{
985988
string tag = "1.0";
@@ -1045,6 +1048,7 @@ public void EndToEndMultiArch_ArchivePublishing(string imageName)
10451048
// Cleanup
10461049
newProjectDir.Delete(true);
10471050
}
1051+
*/
10481052

10491053
[DockerIsAvailableAndSupportsArchFact("linux/arm64", checkContainerdStoreAvailability: true)]
10501054
public void EndToEndMultiArch_RemoteRegistry()
@@ -1367,7 +1371,7 @@ public void EndToEndMultiArch_Labels()
13671371
[DockerSupportsArchInlineData("linux/386", "linux-x86", "/app", Skip = "There's no apphost for linux-x86 so we can't execute self-contained, and there's no .NET runtime base image for linux-x86 so we can't execute framework-dependent.")]
13681372
[DockerSupportsArchInlineData("windows/amd64", "win-x64", "C:\\app")]
13691373
[DockerSupportsArchInlineData("linux/amd64", "linux-x64", "/app")]
1370-
[DockerAvailableTheory()]
1374+
[DockerAvailableTheory(Skip = "https://github.com/dotnet/sdk/issues/49502")]
13711375
public async Task CanPackageForAllSupportedContainerRIDs(string dockerPlatform, string rid, string workingDir)
13721376
{
13731377
ILogger logger = _loggerFactory.CreateLogger(nameof(CanPackageForAllSupportedContainerRIDs));

0 commit comments

Comments
 (0)