File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -127,9 +127,14 @@ excludes = [
127127 # SQLite does not support anything except a single column in DISTINCT
128128 :multicolumn_distinct ,
129129
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 } }
130+ # :location is not supported in elixir 1.15 and earlier, so we exclude all
131+ if Version . match? ( System . version ( ) , "~> 1.16" ) do
132+ # 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
133138]
134139
135140ExUnit . configure ( exclude: excludes )
You can’t perform that action at this time.
0 commit comments