Skip to content

Commit 85afb18

Browse files
resolve worker conflicts
1 parent 63be9f0 commit 85afb18

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

test/integ/aio/test_arrow_result_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async def structured_type_wrapped_conn(conn_cnx, structured_type_support):
136136

137137

138138
@pytest.mark.asyncio
139-
@pytest.mark.parametrize("datatype", ICEBERG_UNSUPPORTED_TYPES)
139+
@pytest.mark.parametrize("datatype", sorted(ICEBERG_UNSUPPORTED_TYPES))
140140
async def test_iceberg_negative(
141141
datatype, conn_cnx, iceberg_support, structured_type_support
142142
):

test/unit/aio/test_ocsp.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
from snowflake.connector.errors import RevocationCheckError
2929
from snowflake.connector.util_text import random_string
3030

31+
# Enforce worker_specific_cache_dir fixture
32+
from ..test_ocsp import worker_specific_cache_dir # noqa: F401
33+
3134
pytestmark = pytest.mark.asyncio
3235

3336
try:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source = src/snowflake/connector
1919
minversion = 4
2020
envlist = fix_lint,
2121
py{39,310,311,312,313}-{extras,unit-parallel,integ,integ-parallel,pandas,pandas-parallel,sso,single},
22-
py{310,311,312,313}-aio-parallel,
22+
py{310,311,312,313}-{aio,aio-parallel},
2323
coverage
2424
skip_missing_interpreters = true
2525

0 commit comments

Comments
 (0)