We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b71ea15 commit 008d525Copy full SHA for 008d525
4 files changed
.github/workflows/ci.yml
@@ -10,6 +10,8 @@ jobs:
10
image: postgres:latest
11
env:
12
POSTGRES_PASSWORD: postgres
13
+ POSTGRES_DB: sql_test
14
+ POSTGRES_HOST_AUTH_METHOD: trust
15
ports: ["5432:5432"]
16
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
17
steps:
.github/workflows/conformance.yml
mix.exs
@@ -45,12 +45,12 @@ defmodule SQL.MixProject do
45
defp deps do
46
[
47
{:benchee, "~> 1.3", only: :dev},
48
- {:ecto_sql, "~> 3.12", only: [:dev, :test]},
+ {:ecto_sql, "~> 3.12", only: :dev},
49
{:ex_doc, "~> 0.37", only: :dev},
50
- {:postgrex, ">= 0.0.0", only: [:dev, :test]},
51
- {:tds, ">= 0.0.0", only: [:dev, :test]},
52
- {:myxql, ">= 0.0.0", only: [:dev, :test]},
53
- {:yamerl, ">= 0.0.0", only: [:dev, :test]},
+ {:postgrex, ">= 0.0.0", only: :dev},
+ {:tds, ">= 0.0.0", only: :dev},
+ {:myxql, ">= 0.0.0", only: :dev},
+ {:yamerl, ">= 0.0.0", only: :dev},
54
{:unicode_set, "~> 1.0"}
55
]
56
end
test/test_helper.exs
@@ -1,9 +1,6 @@
1
# SPDX-License-Identifier: Apache-2.0
2
# SPDX-FileCopyrightText: 2025 DBVisor
3
4
-defmodule SQL.Repo do
5
- use Ecto.Repo, otp_app: :sql, adapter: Ecto.Adapters.Postgres
6
-end
7
defmodule SQLTest.Helpers do
8
def validate([[[[[], b1], b2], b3],b4], _) when b1 in ~c"tT" and b2 in ~c"eE" and b3 in ~c"sS" and b4 in ~c"tT", do: true
9
def validate(_, _), do: false
0 commit comments