@@ -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
- [ DockerAvailableFact ]
688
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
689
689
public void EndToEnd_NoAPI_Console ( )
690
690
{
691
691
DirectoryInfo newProjectDir = new DirectoryInfo ( Path . Combine ( TestSettings . TestArtifactsDirectory , "CreateNewImageTest" ) ) ;
@@ -766,7 +766,7 @@ public void EndToEnd_NoAPI_Console()
766
766
privateNuGetAssets . Delete ( true ) ;
767
767
}
768
768
769
- [ DockerAvailableFact ]
769
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
770
770
public void EndToEnd_SingleArch_NoRid ( )
771
771
{
772
772
// Create a new console project
@@ -858,7 +858,7 @@ public void EndToEndMultiArch_LocalRegistry(string imageName)
858
858
newProjectDir . Delete ( true ) ;
859
859
}
860
860
861
- [ DockerAvailableFact ]
861
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
862
862
public void MultiArchStillAllowsSingleRID ( )
863
863
{
864
864
string imageName = NewImageName ( ) ;
@@ -910,7 +910,7 @@ public void MultiArchStillAllowsSingleRID()
910
910
newProjectDir . Delete ( true ) ;
911
911
}
912
912
913
- [ DockerAvailableFact ]
913
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
914
914
public void MultiArchStillAllowsSingleRIDUsingJustRIDProperties ( )
915
915
{
916
916
string imageName = NewImageName ( ) ;
@@ -1430,7 +1430,7 @@ static string[] DecideEntrypoint(string rid, string appName, string workingDir)
1430
1430
}
1431
1431
}
1432
1432
1433
- [ DockerAvailableFact ]
1433
+ [ DockerAvailableFact ( Skip = "https://github.com/dotnet/sdk/issues/49502" ) ]
1434
1434
public async void CheckDownloadErrorMessageWhenSourceRepositoryThrows ( )
1435
1435
{
1436
1436
var loggerFactory = new TestLoggerFactory ( _testOutput ) ;
0 commit comments