Skip to content

Commit 07fcecf

Browse files
Exclude category again
Also remove specific finding
1 parent b701f0c commit 07fcecf

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

test/explorer/data_frame_test.exs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4859,7 +4859,8 @@ defmodule Explorer.DataFrameTest do
48594859

48604860
property "should be able to create a DataFrame from valid rows" do
48614861
check all(
4862-
dtypes <- Explorer.Generator.dtypes(),
4862+
# TODO: Remove `exclude: :category` after #1011 is resolved.
4863+
dtypes <- Explorer.Generator.dtypes(exclude: :category),
48634864
rows <- Explorer.Generator.rows(dtypes),
48644865
max_runs: 1_000
48654866
) do
@@ -4869,6 +4870,7 @@ defmodule Explorer.DataFrameTest do
48694870

48704871
property "should be able to create a DataFrame from valid columns" do
48714872
check all(
4873+
# TODO: Remove `exclude: :category` after #1011 is resolved.
48724874
dtypes <- Explorer.Generator.dtypes(exclude: :category),
48734875
cols <- Explorer.Generator.columns(dtypes),
48744876
max_runs: 1_000
@@ -4947,11 +4949,5 @@ defmodule Explorer.DataFrameTest do
49474949
|> DF.dump_parquet!()
49484950
end
49494951
end
4950-
4951-
test "specific property finding" do
4952-
dtypes = [{"col_f", {:list, {:list, :category}}}]
4953-
cols = [{"col_f", [[], [""], nil]}]
4954-
%DF{} = DF.new(cols, dtypes: dtypes)
4955-
end
49564952
end
49574953
end

0 commit comments

Comments
 (0)