Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
goodwanghan authored Jun 13, 2024
1 parent d20bfa0 commit f3abb68
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/fugue_dask/test_execution_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ def test__join_outer_pandas_incompatible(self):

# TODO: dask-sql 2024.5.0 has a bug, can't pass the HAVING tests
def test_select(self):
try:
import dask_sql
except ImportError:
return

a = ArrayDataFrame(
[[1, 2], [None, 2], [None, 1], [3, 4], [None, 4]], "a:double,b:int"
)
Expand Down

0 comments on commit f3abb68

Please sign in to comment.