@@ -719,13 +719,13 @@ def test_deprecated_path_argument(backend_name, tmp_path):
719
719
),
720
720
],
721
721
)
722
- @pytest .mark .notimpl (["dask" , " datafusion" , "pandas " ])
722
+ @pytest .mark .notimpl (["datafusion" ])
723
723
def test_in_memory_table (backend , con , expr , expected ):
724
724
result = con .execute (expr )
725
725
backend .assert_frame_equal (result , expected )
726
726
727
727
728
- @pytest .mark .notimpl (["dask" , " datafusion" , "pandas " ])
728
+ @pytest .mark .notimpl (["datafusion" ])
729
729
def test_filter_memory_table (backend , con ):
730
730
t = ibis .memtable ([(1 , 2 ), (3 , 4 ), (5 , 6 )], columns = ["x" , "y" ])
731
731
expr = t .filter (t .x > 1 )
@@ -734,7 +734,7 @@ def test_filter_memory_table(backend, con):
734
734
backend .assert_frame_equal (result , expected )
735
735
736
736
737
- @pytest .mark .notimpl (["dask" , " datafusion" , "pandas " ])
737
+ @pytest .mark .notimpl (["datafusion" ])
738
738
def test_agg_memory_table (con ):
739
739
t = ibis .memtable ([(1 , 2 ), (3 , 4 ), (5 , 6 )], columns = ["x" , "y" ])
740
740
expr = t .x .count ()
0 commit comments