Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added ClickHouse tests, fixed & improved CI pipeline #1895

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Debugging: use regular 'Theory' attribute for ClickHouse to validate
  • Loading branch information
DarkWanderer committed Apr 15, 2023
commit 77fc0fb64d60e315a0f1458f4ca6bd43d4ca51dd
2 changes: 1 addition & 1 deletion tests/Dapper.Tests/Providers/ClickHouseTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static IEnumerable<object[]> SelectTestCases
}
}

[TheoryClickHouse]
[Theory]
[MemberData(nameof(SelectTestCases))]
public void ShouldSelect(string sql, object expected) => Assert.Equal(expected, connection.ExecuteScalar(sql));

Expand Down