Skip to content

Commit

Permalink
chore: handle collection of tpc tests when deps are not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jul 31, 2024
1 parent 0f3308f commit efc26b1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions ibis/backends/tests/tpc/ds/test_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@
from operator import itemgetter

import pytest
from pyarrow import ArrowNotImplementedError

from ibis import _, coalesce, cumulative_window, date, ifelse, null, rank, union
from ibis import literal as lit
from ibis import selectors as s
from ibis.backends.tests.errors import ClickHouseDatabaseError, TrinoUserError
from ibis.backends.tests.errors import (
ArrowNotImplementedError,
ClickHouseDatabaseError,
TrinoUserError,
)
from ibis.backends.tests.tpc.conftest import tpc_test

# so that clickhouse doesn't run forever when we hit one of its weird cross
Expand Down

0 comments on commit efc26b1

Please sign in to comment.