💚 Skip LocalDb dependent test on Mono

Some tests rely on LocalDb and therefore do not run on Mac/Linux. We
have https://github.com/aspnet/Diagnostics/issues/176 open to address
this, but in the meantime some of the tests are skipped. Adding one more
test that we missed.
This commit is contained in:
Rowan Miller 2015-10-28 13:37:34 -07:00
parent 9df12d07ff
commit ddf6a45f80
1 changed files with 2 additions and 1 deletions

View File

@ -281,7 +281,8 @@ namespace Microsoft.AspNet.Diagnostics.Entity.Tests
}
}
[Fact]
[ConditionalTheory]
[FrameworkSkipCondition(RuntimeFrameworks.Mono)]
public async Task Pass_thru_when_context_not_in_services()
{
using (var database = SqlServerTestStore.CreateScratch())