Skip to content

Commit 1c42ea5

Browse files
committed
sorting set
1 parent 4108333 commit 1c42ea5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

test/integ/test_arrow_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def pandas_verify(cur, data, deserialize):
300300
), f"Result value {value} should match input example {datum}."
301301

302302

303-
@pytest.mark.parametrize("datatype", ICEBERG_UNSUPPORTED_TYPES)
303+
@pytest.mark.parametrize("datatype", sorted(ICEBERG_UNSUPPORTED_TYPES))
304304
def test_iceberg_negative(datatype, conn_cnx, iceberg_support, structured_type_support):
305305
if not iceberg_support:
306306
pytest.skip("Test requires iceberg support.")

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ deps =
8989
mock
9090
certifi<2025.4.26
9191
skip_install = True
92-
setenv = {[testenv]setenv}
92+
setenv =
93+
{[testenv]setenv}
94+
SNOWFLAKE_PYTEST_OPTS = {env:SNOWFLAKE_PYTEST_OPTS:} -n auto
9395
passenv = {[testenv]passenv}
9496
commands =
9597
# Unit and pandas tests are already skipped for the old driver (see test/conftest.py). Avoid walking those

0 commit comments

Comments
 (0)