Skip to content

Commit

Permalink
add updates for Datafusion upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Aug 27, 2024
1 parent e120bb9 commit 365aeb4
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/gateway/tests/test_tpch_with_dataframe_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,8 @@ def mark_tests_as_xfail(request):
"""Marks a subset of tests as expected to be fail."""
source = request.getfixturevalue("source")
originalname = request.keywords.node.originalname
if source == "gateway-over-duckdb":
if originalname == "test_query_15":
request.node.add_marker(pytest.mark.xfail(reason="No results (float vs decimal)"))
if originalname == "test_query_16":
request.node.add_marker(pytest.mark.xfail(reason="distinct not supported"))
if source == "gateway-over-duckdb" and originalname == "test_query_16":
request.node.add_marker(pytest.mark.xfail(reason="distinct not supported"))


class TestTpchWithDataFrameAPI:
Expand Down

0 comments on commit 365aeb4

Please sign in to comment.