Skip to content

Commit 2919d86

Browse files
committed
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 1adb812 commit 2919d86

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
@@ -801,9 +801,10 @@ public void EndToEnd_SingleArch_NoRid()
801801
processResultX64.Should().Pass().And.HaveStdOut("Hello, World!");
802802
}
803803

804+
/**
804805
[InlineData("endtoendmultiarch-localregisty")]
805806
[InlineData("myteam/endtoendmultiarch-localregisty")]
806-
[DockerIsAvailableAndSupportsArchTheory("linux/arm64", checkContainerdStoreAvailability: true)]
807+
[DockerIsAvailableAndSupportsArchTheory(Skip = "https://github.com/dotnet/sdk/issues/49502", "linux/arm64", checkContainerdStoreAvailability: true)]
807808
public void EndToEndMultiArch_LocalRegistry(string imageName)
808809
{
809810
string tag = "1.0";
@@ -859,6 +860,7 @@ public void EndToEndMultiArch_LocalRegistry(string imageName)
859860
// Cleanup
860861
newProjectDir.Delete(true);
861862
}
863+
*/
862864

863865
[DockerAvailableFact(Skip = "https://github.com/dotnet/sdk/issues/49502")]
864866
public void MultiArchStillAllowsSingleRID()
@@ -985,9 +987,10 @@ private DirectoryInfo CreateNewProject(string template, [CallerMemberName] strin
985987
private string GetPublishArtifactsPath(string projectDir, string rid, string configuration = "Debug")
986988
=> Path.Combine(projectDir, "bin", configuration, ToolsetInfo.CurrentTargetFramework, rid, "publish");
987989

990+
/**
988991
[InlineData("endtoendmultiarch-archivepublishing")]
989992
[InlineData("myteam/endtoendmultiarch-archivepublishing")]
990-
[DockerIsAvailableAndSupportsArchTheory("linux/arm64", checkContainerdStoreAvailability: true)]
993+
[DockerIsAvailableAndSupportsArchTheory(Skip = "https://github.com/dotnet/sdk/issues/49502", "linux/arm64", checkContainerdStoreAvailability: true)]
991994
public void EndToEndMultiArch_ArchivePublishing(string imageName)
992995
{
993996
string tag = "1.0";
@@ -1054,6 +1057,7 @@ public void EndToEndMultiArch_ArchivePublishing(string imageName)
10541057
// Cleanup
10551058
newProjectDir.Delete(true);
10561059
}
1060+
*/
10571061

10581062
[DockerIsAvailableAndSupportsArchFact("linux/arm64", checkContainerdStoreAvailability: true)]
10591063
public void EndToEndMultiArch_RemoteRegistry()
@@ -1381,7 +1385,7 @@ public void EndToEndMultiArch_Labels()
13811385
[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.")]
13821386
[DockerSupportsArchInlineData("windows/amd64", "win-x64", "C:\\app")]
13831387
[DockerSupportsArchInlineData("linux/amd64", "linux-x64", "/app")]
1384-
[DockerAvailableTheory()]
1388+
[DockerAvailableTheory(Skip = "https://github.com/dotnet/sdk/issues/49502")]
13851389
public async Task CanPackageForAllSupportedContainerRIDs(string dockerPlatform, string rid, string workingDir)
13861390
{
13871391
ILogger logger = _loggerFactory.CreateLogger(nameof(CanPackageForAllSupportedContainerRIDs));

0 commit comments

Comments
 (0)