Skip to content

Commit

Permalink
Fix Ibis test in python 3.8 (#553)
Browse files Browse the repository at this point in the history
  • Loading branch information
goodwanghan authored Sep 21, 2024
1 parent b8ccc61 commit 52a7d6d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/fugue_ibis/test_execution_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ def test_select(self):
def test_get_parallelism(self):
assert self.engine.get_current_parallelism() == 1

def test_union(self):
if sys.version_info >= (3, 9):
# ibis 3.8 support no longer works
return super().test_union()


@ft.fugue_test_suite("mockibisduck", mark_test=True)
class DuckBuiltInTests(BuiltInTests.Tests):
Expand Down

0 comments on commit 52a7d6d

Please sign in to comment.