Browse Source

Quarantine ConfigureEndpointDevelopmentCertificateGetsLoadedWhenPresent (#56939)

Ankit Jain 1 year ago
parent
commit
b40ca810bb

+ 0 - 1
eng/test-configuration.json

@@ -4,7 +4,6 @@
   "localRerunCount" : 3,
   "retryOnRules": [
     {"testName": {"contains": "FlakyTestToEnsureRetryWorks" }},
-    {"testName": {"contains": "ConfigureEndpointDevelopmentCertificateGetsLoadedWhenPresent" }}, // writes to a well-known path
     {"testName": {"contains": "MaxRequestBufferSizeTests.LargeUpload" }}, // tries to manipulate the state of the server's buffer
     {"testName": {"contains": "CertificateChangedOnDisk"}}, // depends on FS event timing
     {"testName": {"contains": "CertificateChangedOnDisk_Symlink"}}, // depends on FS event timing

+ 2 - 1
src/Servers/Kestrel/Kestrel/test/KestrelConfigurationLoaderTests.cs

@@ -238,8 +238,9 @@ public class KestrelConfigurationLoaderTests
         Assert.True(serverOptions.CodeBackedListenOptions[0].IsTls);
     }
 
-    // On helix retry list - inherently flaky (writes to a well-known path)
     [Fact]
+    // inherently flaky (writes to a well-known path)
+    [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/48736")]
     public void ConfigureEndpointDevelopmentCertificateGetsLoadedWhenPresent()
     {
         try