Skip to content

Commit

Permalink
Disable flaky CrossStore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndriySvyryd committed Oct 31, 2019
1 parent cd00b4f commit 036f31e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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<MultipleContext1>()))
Expand Down Expand Up @@ -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());

Expand Down
2 changes: 1 addition & 1 deletion test/EFCore.CrossStore.FunctionalTests/EndToEndTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 036f31e

Please sign in to comment.