From 3ea1f6a0e98d5666f716b07e3c1b57668e44144a Mon Sep 17 00:00:00 2001 From: Pavel Krymets Date: Fri, 25 Jan 2019 21:03:18 -0800 Subject: [PATCH 1/2] Disable ResponseFormats_Chunked test (#6952) --- src/Servers/test/FunctionalTests/ResponseTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Servers/test/FunctionalTests/ResponseTests.cs b/src/Servers/test/FunctionalTests/ResponseTests.cs index 0b9396ee8f..88d7ef447b 100644 --- a/src/Servers/test/FunctionalTests/ResponseTests.cs +++ b/src/Servers/test/FunctionalTests/ResponseTests.cs @@ -25,7 +25,7 @@ namespace ServerComparison.FunctionalTests } public static TestMatrix TestVariants - => TestMatrix.ForServers(ServerType.IISExpress, ServerType.Kestrel, /* ServerType.Nginx, https://github.com/aspnet/AspNetCore-Internal/issues/1525 */ ServerType.HttpSys) + => TestMatrix.ForServers(/* ServerType.IISExpress, https://github.com/aspnet/AspNetCore/issues/6168, */ ServerType.Kestrel, /* ServerType.Nginx, https://github.com/aspnet/AspNetCore-Internal/issues/1525 */ ServerType.HttpSys) .WithTfms(Tfm.NetCoreApp22) .WithAllAncmVersions() .WithAllHostingModels(); From 29898df8a837efbef39ad006c2c2a8c4367fa5d1 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Mon, 28 Jan 2019 16:44:56 -0800 Subject: [PATCH 2/2] Attempt to run Cors functional tests with watchman disabled. (#7076) According to https://github.com/facebook/jest/issues/2219, jest will not run tests if watchman is installed. It is not entirely clear if this is the case in our OSX CI environment, but the symptoms seem close to what's reported in the issue. Possible fix for https://github.com/aspnet/AspNetCore-Internal/issues/1619 --- .../CORS/test/FunctionalTests/CorsMiddlewareFunctionalTest.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Middleware/CORS/test/FunctionalTests/CorsMiddlewareFunctionalTest.cs b/src/Middleware/CORS/test/FunctionalTests/CorsMiddlewareFunctionalTest.cs index 502ac88be6..b5b5ece9eb 100644 --- a/src/Middleware/CORS/test/FunctionalTests/CorsMiddlewareFunctionalTest.cs +++ b/src/Middleware/CORS/test/FunctionalTests/CorsMiddlewareFunctionalTest.cs @@ -37,7 +37,7 @@ namespace FunctionalTests processStartInfo = new ProcessStartInfo { FileName = "cmd", - Arguments = "/c npm test --no-color", + Arguments = "/c npm test --no-color --no-watchman", }; } else @@ -45,7 +45,7 @@ namespace FunctionalTests processStartInfo = new ProcessStartInfo { FileName = "npm", - Arguments = "test", + Arguments = "test --no-watchman", }; }