@@ -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 ) ) ;
@@ -437,7 +437,7 @@ public async Task EndToEnd_MultiProjectSolution()
437
437
/// It's safe to load the target for libraries in a multi-targeted context because libraries don't have EnableSdkContainerSupport
438
438
/// enabled by default, so the target will be skipped.
439
439
/// </summary>
440
- [ DockerAvailableFact ]
440
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
441
441
public async Task EndToEnd_MultiProjectSolution_with_multitargeted_library ( )
442
442
{
443
443
ILogger logger = _loggerFactory . CreateLogger ( nameof ( EndToEnd_MultiProjectSolution_with_multitargeted_library ) ) ;
@@ -505,7 +505,7 @@ public async Task EndToEnd_MultiProjectSolution_with_multitargeted_library()
505
505
commandResult . Should ( ) . HaveStdOutContaining ( "Pushed image 'webapp:latest'" ) ;
506
506
}
507
507
508
- [ DockerAvailableTheory ( ) ]
508
+ [ DockerAvailableTheory ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
509
509
[ InlineData ( "webapi" , false ) ]
510
510
[ InlineData ( "webapi" , true ) ]
511
511
[ InlineData ( "worker" , false ) ]
@@ -682,7 +682,7 @@ public async Task EndToEnd_NoAPI_ProjectType(string projectType, bool addPackage
682
682
privateNuGetAssets . Delete ( true ) ;
683
683
}
684
684
685
- [ DockerAvailableTheory ( ) ]
685
+ [ DockerAvailableTheory ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
686
686
[ InlineData ( DockerRegistryManager . FullyQualifiedBaseImageAspNet ) ]
687
687
[ InlineData ( DockerRegistryManager . FullyQualifiedBaseImageAspNetDigest ) ]
688
688
public void EndToEnd_NoAPI_Console ( string baseImage )
@@ -764,7 +764,7 @@ public void EndToEnd_NoAPI_Console(string baseImage)
764
764
privateNuGetAssets . Delete ( true ) ;
765
765
}
766
766
767
- [ DockerAvailableFact ]
767
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
768
768
public void EndToEnd_SingleArch_NoRid ( )
769
769
{
770
770
// Create a new console project
@@ -854,7 +854,7 @@ public void EndToEndMultiArch_LocalRegistry(string imageName)
854
854
newProjectDir . Delete ( true ) ;
855
855
}
856
856
857
- [ DockerAvailableFact ]
857
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
858
858
public void MultiArchStillAllowsSingleRID ( )
859
859
{
860
860
string imageName = NewImageName ( ) ;
@@ -905,7 +905,7 @@ public void MultiArchStillAllowsSingleRID()
905
905
newProjectDir . Delete ( true ) ;
906
906
}
907
907
908
- [ DockerAvailableFact ]
908
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
909
909
public void MultiArchStillAllowsSingleRIDUsingJustRIDProperties ( )
910
910
{
911
911
string imageName = NewImageName ( ) ;
@@ -1418,7 +1418,7 @@ static string[] DecideEntrypoint(string rid, string appName, string workingDir)
1418
1418
}
1419
1419
}
1420
1420
1421
- [ DockerAvailableFact ]
1421
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
1422
1422
public async void CheckDownloadErrorMessageWhenSourceRepositoryThrows ( )
1423
1423
{
1424
1424
var loggerFactory = new TestLoggerFactory ( _testOutput ) ;
0 commit comments