Skip to content

Commit

Permalink
fix bug in ignoreopts and add back python versions 3.10 and 3.11 in m…
Browse files Browse the repository at this point in the history
…atrix

Signed-off-by: tdhooghe <[email protected]>
  • Loading branch information
tdhooghe committed Oct 23, 2024
1 parent b89a552 commit d967ff5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ dataset-tests: dataset-doctests
IGNORE_OPTS="--ignore tests/tensorflow"; \
fi; \

cd kedro-datasets && pytest tests --cov-config pyproject.toml --numprocesses 4 --dist loadfile $$IGNORE_OPTS
cd kedro-datasets && pytest tests --cov-config pyproject.toml --numprocesses 4 --dist loadfile $(IGNORE_OPTS)
cd kedro-datasets && pytest tests/tensorflow/test_tensorflow_model_dataset.py --no-cov

extra_pytest_args-no-spark=--ignore kedro_datasets/databricks --ignore kedro_datasets/spark
Expand Down
2 changes: 1 addition & 1 deletion 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
2 changes: 1 addition & 1 deletion kedro-datasets/tests/snowflake/test_snowpark_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import pytest

if sys.version_info >= (3, 12):
pytest.skip( # pragma: no cover - snowpark python 3.12
pytest.mark.xfail(
"Snowpark is not supported in Python versions higher than 3.11",
allow_module_level=True,
)
Expand Down

0 comments on commit d967ff5

Please sign in to comment.