Skip to content

Commit

Permalink
Skip failing FromSqlQuery test cases, until dotnet/efcore#24806 has b…
Browse files Browse the repository at this point in the history
…een merged.
  • Loading branch information
lauxjpn committed May 2, 2021
1 parent 5ae583f commit 23658fc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test/EFCore.MySql.FunctionalTests/Query/FromSqlQueryMySqlTest.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using System.Data.Common;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore.Query;
using Microsoft.EntityFrameworkCore.TestUtilities;
using MySqlConnector;
using Xunit;

namespace Pomelo.EntityFrameworkCore.MySql.FunctionalTests.Query
{
Expand All @@ -18,5 +20,21 @@ protected override DbParameter CreateDbParameter(string name, object value)
ParameterName = name,
Value = value
};

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_in_subquery_with_dbParameter(bool async)
=> base.FromSqlRaw_in_subquery_with_dbParameter(async);

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_in_subquery_with_positional_dbParameter_with_name(bool async)
=> base.FromSqlRaw_in_subquery_with_positional_dbParameter_with_name(async);

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_in_subquery_with_positional_dbParameter_without_name(bool async)
=> base.FromSqlRaw_in_subquery_with_positional_dbParameter_without_name(async);

[ConditionalTheory(Skip = "https://github.com/dotnet/efcore/pull/24806")]
public override Task FromSqlRaw_with_dbParameter_mixed_in_subquery(bool async)
=> base.FromSqlRaw_with_dbParameter_mixed_in_subquery(async);
}
}

0 comments on commit 23658fc

Please sign in to comment.