Skip to content

Commit

Permalink
skip impala and trino in another test
Browse files Browse the repository at this point in the history
  • Loading branch information
jitingxu1 committed Sep 20, 2024
1 parent 4692e6c commit 006cfa7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion ibis/backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import re
import sys
import urllib.parse
import urllib.request
import weakref
from io import BytesIO
from pathlib import Path
Expand Down
6 changes: 6 additions & 0 deletions ibis/backends/tests/test_register.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,12 @@ def test_read_parquet_url_request(con, url, data_dir, in_table_name, monkeypatch
pytest.importorskip("pyarrow.parquet")
fsspec = pytest.importorskip("fsspec")

if con.name in ("trino", "impala"):
# TODO: remove after trino and impala have efficient insertion
pytest.skip(
"Both Impala and Trino lack efficient data insertion methods from Python."
)

fname = Path("functional_alltypes.parquet")
fname = Path(data_dir) / "parquet" / fname.name
mock_calls = []
Expand Down

0 comments on commit 006cfa7

Please sign in to comment.