@@ -42,7 +42,7 @@ public void Dispose()
42
42
_loggerFactory . Dispose ( ) ;
43
43
}
44
44
45
- [ DockerAvailableFact ( ) ]
45
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
46
46
public async Task ApiEndToEndWithRegistryPushAndPull ( )
47
47
{
48
48
ILogger logger = _loggerFactory . CreateLogger ( nameof ( ApiEndToEndWithRegistryPushAndPull ) ) ;
@@ -89,7 +89,7 @@ public async Task ApiEndToEndWithRegistryPushAndPull()
89
89
}
90
90
}
91
91
92
- [ DockerAvailableFact ( ) ]
92
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
93
93
public async Task ApiEndToEndWithLocalLoad ( )
94
94
{
95
95
ILogger logger = _loggerFactory . CreateLogger ( nameof ( ApiEndToEndWithLocalLoad ) ) ;
@@ -130,7 +130,7 @@ public async Task ApiEndToEndWithLocalLoad()
130
130
}
131
131
}
132
132
133
- [ DockerAvailableFact ( ) ]
133
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
134
134
public async Task ApiEndToEndWithArchiveWritingAndLoad ( )
135
135
{
136
136
ILogger logger = _loggerFactory . CreateLogger ( nameof ( ApiEndToEndWithArchiveWritingAndLoad ) ) ;
@@ -180,7 +180,7 @@ public async Task ApiEndToEndWithArchiveWritingAndLoad()
180
180
}
181
181
}
182
182
183
- [ DockerAvailableFact ]
183
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
184
184
public async Task TarballsHaveCorrectStructure ( )
185
185
{
186
186
var archiveFile = Path . Combine ( TestSettings . TestArtifactsDirectory ,
@@ -351,7 +351,7 @@ private string BuildLocalApp([CallerMemberName] string testName = "TestName", st
351
351
return publishDirectory ;
352
352
}
353
353
354
- [ DockerAvailableFact ( ) ]
354
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
355
355
public async Task EndToEnd_MultiProjectSolution ( )
356
356
{
357
357
ILogger logger = _loggerFactory . CreateLogger ( nameof ( EndToEnd_MultiProjectSolution ) ) ;
@@ -441,7 +441,7 @@ public async Task EndToEnd_MultiProjectSolution()
441
441
/// It's safe to load the target for libraries in a multi-targeted context because libraries don't have EnableSdkContainerSupport
442
442
/// enabled by default, so the target will be skipped.
443
443
/// </summary>
444
- [ DockerAvailableFact ]
444
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
445
445
public async Task EndToEnd_MultiProjectSolution_with_multitargeted_library ( )
446
446
{
447
447
ILogger logger = _loggerFactory . CreateLogger ( nameof ( EndToEnd_MultiProjectSolution_with_multitargeted_library ) ) ;
@@ -509,7 +509,7 @@ public async Task EndToEnd_MultiProjectSolution_with_multitargeted_library()
509
509
commandResult . Should ( ) . HaveStdOutContaining ( "Pushed image 'webapp:latest'" ) ;
510
510
}
511
511
512
- [ DockerAvailableTheory ( ) ]
512
+ [ DockerAvailableTheory ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
513
513
[ InlineData ( "webapi" , false ) ]
514
514
[ InlineData ( "webapi" , true ) ]
515
515
[ InlineData ( "worker" , false ) ]
@@ -685,7 +685,7 @@ public async Task EndToEnd_NoAPI_ProjectType(string projectType, bool addPackage
685
685
privateNuGetAssets . Delete ( true ) ;
686
686
}
687
687
688
- [ DockerAvailableTheory ( ) ]
688
+ [ DockerAvailableTheory ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
689
689
[ InlineData ( DockerRegistryManager . FullyQualifiedBaseImageAspNet ) ]
690
690
[ InlineData ( DockerRegistryManager . FullyQualifiedBaseImageAspNetDigest ) ]
691
691
public void EndToEnd_NoAPI_Console ( string baseImage )
@@ -768,7 +768,7 @@ public void EndToEnd_NoAPI_Console(string baseImage)
768
768
privateNuGetAssets . Delete ( true ) ;
769
769
}
770
770
771
- [ DockerAvailableFact ]
771
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
772
772
public void EndToEnd_SingleArch_NoRid ( )
773
773
{
774
774
// Create a new console project
@@ -860,7 +860,7 @@ public void EndToEndMultiArch_LocalRegistry(string imageName)
860
860
newProjectDir . Delete ( true ) ;
861
861
}
862
862
863
- [ DockerAvailableFact ]
863
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
864
864
public void MultiArchStillAllowsSingleRID ( )
865
865
{
866
866
string imageName = NewImageName ( ) ;
@@ -912,7 +912,7 @@ public void MultiArchStillAllowsSingleRID()
912
912
newProjectDir . Delete ( true ) ;
913
913
}
914
914
915
- [ DockerAvailableFact ]
915
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
916
916
public void MultiArchStillAllowsSingleRIDUsingJustRIDProperties ( )
917
917
{
918
918
string imageName = NewImageName ( ) ;
@@ -1432,7 +1432,7 @@ static string[] DecideEntrypoint(string rid, string appName, string workingDir)
1432
1432
}
1433
1433
}
1434
1434
1435
- [ DockerAvailableFact ]
1435
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
1436
1436
public async void CheckDownloadErrorMessageWhenSourceRepositoryThrows ( )
1437
1437
{
1438
1438
var loggerFactory = new TestLoggerFactory ( _testOutput ) ;
0 commit comments