From 036f31e120b92c08df7dbb540407bb13a169865c Mon Sep 17 00:00:00 2001 From: AndriySvyryd Date: Thu, 31 Oct 2019 09:16:20 -0700 Subject: [PATCH] Disable flaky CrossStore tests --- .../ConfigurationPatternsTest.cs | 4 ++-- test/EFCore.CrossStore.FunctionalTests/EndToEndTest.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/EFCore.CrossStore.FunctionalTests/ConfigurationPatternsTest.cs b/test/EFCore.CrossStore.FunctionalTests/ConfigurationPatternsTest.cs index b41f3ffb299..de3198738fa 100644 --- a/test/EFCore.CrossStore.FunctionalTests/ConfigurationPatternsTest.cs +++ b/test/EFCore.CrossStore.FunctionalTests/ConfigurationPatternsTest.cs @@ -41,7 +41,7 @@ public void Can_register_multiple_context_types() } } - [ConditionalFact] + [ConditionalFact(Skip = "#18682")] public void Can_register_multiple_context_types_with_default_service_provider() { using (var context = new MultipleContext1(new DbContextOptions())) @@ -238,7 +238,7 @@ await NestedContextTest( () => new ExternalProviderContext(sqlServerServiceProvider)); } - [ConditionalFact] + [ConditionalFact(Skip = "#18682")] public Task Can_use_one_context_nested_inside_another_of_a_different_type_with_implicit_services() => NestedContextTest(() => new BlogContext(), () => new ExternalProviderContext()); diff --git a/test/EFCore.CrossStore.FunctionalTests/EndToEndTest.cs b/test/EFCore.CrossStore.FunctionalTests/EndToEndTest.cs index 4d8016c5614..eb6581c0e14 100644 --- a/test/EFCore.CrossStore.FunctionalTests/EndToEndTest.cs +++ b/test/EFCore.CrossStore.FunctionalTests/EndToEndTest.cs @@ -23,7 +23,7 @@ protected EndToEndTest(CrossStoreFixture fixture) protected TestStore TestStore { get; } public void Dispose() => TestStore.Dispose(); - [ConditionalFact] + [ConditionalFact(Skip = "#18682")] public virtual void Can_save_changes_and_query() { int secondId;