Skip to content

Cherrypicks to aio connector part12 #2463

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: cherrypicks-to-aio-connector-part11
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ def pytest_collection_modifyitems(items) -> None:
item_path = Path(str(item.fspath)).parent
relative_path = item_path.relative_to(top_test_dir)
for part in relative_path.parts:
if part.endswith("_it"):
part = part[:-3]
item.add_marker(part)
if part in ("unit", "pandas"):
item.add_marker("skipolddriver")
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ async def test_is_valid(conn_cnx):
async def test_no_auth_connection_negative_case():
# AuthNoAuth does not exist in old drivers, so we import at test level to
# skip importing it for old driver tests.
from test.integ.aio.conftest import create_connection
from test.integ.aio_it.conftest import create_connection

from snowflake.connector.aio.auth._no_auth import AuthNoAuth

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading