Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Merel Theisen <[email protected]>
  • Loading branch information
merelcht committed Oct 24, 2024
1 parent 8e8fa8a commit f9263d1
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions kedro-datasets/tests/snowflake/test_snowpark_dataset.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
import datetime
import sys
from unittest.mock import MagicMock, patch

import pytest

# if sys.version_info >= (3, 12):
# pytest.mark.xfail(
# "Snowpark is not supported in Python versions higher than 3.11",
# allow_module_level=True,
# )

snowpark = pytest.importorskip("snowpark")
import pandas as pd
import pytest
from kedro.io.core import DatasetError
Expand All @@ -27,6 +17,7 @@

from kedro_datasets.snowflake.snowpark_dataset import SnowparkTableDataset

snowpark = pytest.importorskip("snowpark")
# example dummy configuration for local testing
DUMMY_CREDENTIALS = {
"account": "DUMMY_ACCOUNT",
Expand Down

0 comments on commit f9263d1

Please sign in to comment.