Skip to content

Commit a020c14

Browse files
committed
test(duckdb-client): use types that are valid duckdb strings and give better ids to test cases
1 parent 6569374 commit a020c14

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

ibis/backends/duckdb/tests/test_client.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -392,11 +392,12 @@ def test_multiple_tables_with_the_same_name(tmp_path):
392392
@pytest.mark.parametrize(
393393
"input",
394394
[
395-
{"columns": {"lat": "float64", "lon": "float64", "geom": "geometry"}},
396-
{"types": {"geom": "geometry"}},
395+
{"columns": {"lat": "double", "lon": "float", "geom": "geometry"}},
396+
{"types": {"geom": "geometry", "lon": "float"}},
397397
],
398+
ids=["columns", "types"],
398399
)
399-
@pytest.mark.parametrize("all_varchar", [True, False])
400+
@pytest.mark.parametrize("all_varchar", [True, False], ids=["varchar", "not_varchar"])
400401
@pytest.mark.xfail(
401402
LINUX and SANDBOXED,
402403
reason="nix on linux cannot download duckdb extensions or data due to sandboxing",

0 commit comments

Comments
 (0)