We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3183b70 commit b86ecbbCopy full SHA for b86ecbb
1 file changed
integration_test/test_helper.exs
@@ -127,9 +127,14 @@ excludes = [
127
# SQLite does not support anything except a single column in DISTINCT
128
:multicolumn_distinct,
129
130
- # Run all with tag values_list, except for the "delete_all" test,
131
- # as JOINS are not supported on DELETE statements by SQLite.
132
- {:location, {"ecto/integration_test/cases/repo.exs", 2281}}
+ # :location is not supported in elixir 1.15 and earlier, so we exclude all
+ if Version.match?(System.version(), "~> 1.16") do
+ # Run all with tag values_list, except for the "delete_all" test,
133
+ # as JOINS are not supported on DELETE statements by SQLite.
134
+ {:location, {"ecto/integration_test/cases/repo.exs", 2281}}
135
+ else
136
+ :values_list
137
+ end
138
]
139
140
ExUnit.configure(exclude: excludes)
0 commit comments