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;