Skip to content

Commit

Permalink
skip entire module pytest
Browse files Browse the repository at this point in the history
Signed-off-by: tdhooghe <[email protected]>
  • Loading branch information
tdhooghe committed Oct 22, 2024
1 parent fbc275d commit 6b3e3f3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kedro-datasets/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
{name = "Kedro"}
]
description = "Kedro-Datasets is where you can find all of Kedro's data connectors."
requires-python = ">=3.10"
requires-python = ">=3.12"
license = {text = "Apache Software License (Apache 2.0)"}
dependencies = [
"kedro>=0.19.7",
Expand Down Expand Up @@ -228,7 +228,7 @@ test = [
"jupyterlab>=3.0",
"jupyter~=1.0",
"lxml~=4.6",
"matplotlib>=3.5, <3.6",
# "matplotlib>=3.5, <3.6",
"memory_profiler>=0.50.0, <1.0",
"moto==5.0.0",
"mypy~=1.0",
Expand Down
8 changes: 8 additions & 0 deletions kedro-datasets/tests/snowflake/test_snowpark_dataset.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import datetime
import sys

import pytest

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

import pandas as pd
import pytest
from snowflake.snowpark import DataFrame, Session
Expand Down

0 comments on commit 6b3e3f3

Please sign in to comment.