Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ await context.Database.CreateExecutionStrategy().ExecuteAsync(
[SqlServerCondition(SqlServerCondition.IsNotCI)]

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These should be already skipped on CI, perhaps what broke was this condition

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, interesting...

public class SqlServerDatabaseCreatorEnsureDeletedTest : SqlServerDatabaseCreatorTestBase
{
[ConditionalTheory]
[ConditionalTheory(Skip = "#36578")]
[InlineData(true, true, true)]
[InlineData(false, false, true)]
[InlineData(true, false, false)]
Expand Down Expand Up @@ -435,7 +435,7 @@ await GetExecutionStrategy(testDatabase).ExecuteAsync(
[SqlServerCondition(SqlServerCondition.IsNotCI)]
public class SqlServerDatabaseCreatorDeleteTest : SqlServerDatabaseCreatorTestBase
{
[ConditionalTheory]
[ConditionalTheory(Skip = "#36578")]
[InlineData(true, true)]
[InlineData(false, false)]
public static async Task Deletes_database(bool async, bool ambientTransaction)
Expand Down
Loading