Skip to content

Commit de50378

Browse files
joshmarkovicskrawcz
authored andcommitted
Linting
1 parent 45c1289 commit de50378

2 files changed

Lines changed: 22 additions & 22 deletions

File tree

tests/conftest.py

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,24 @@
2525
# Skip tests that require packages not yet available on Python 3.14
2626
collect_ignore = []
2727
if sys.version_info >= (3, 14):
28-
collect_ignore.extend([
29-
# polars - no Python 3.14 support yet
30-
"plugins/test_polars_extensions.py",
31-
"plugins/test_polars_lazyframe_extensions.py",
32-
"resources/narwhals_example.py",
33-
# plotly - no Python 3.14 support yet
34-
"plugins/test_plotly_extensions.py",
35-
# xgboost - no Python 3.14 support yet
36-
"plugins/test_xgboost_extensions.py",
37-
# lightgbm - no Python 3.14 support yet
38-
"plugins/test_lightgbm_extensions.py",
39-
# mlflow - no Python 3.14 support yet
40-
"plugins/test_mlflow_extension.py",
41-
# kedro - no Python 3.14 support yet
42-
"plugins/test_h_kedro.py",
43-
"plugins/test_kedro_extensions.py",
44-
# lancedb - no Python 3.14 support yet
45-
"plugins/test_huggingface_extensions.py",
46-
])
28+
collect_ignore.extend(
29+
[
30+
# polars - no Python 3.14 support yet
31+
"plugins/test_polars_extensions.py",
32+
"plugins/test_polars_lazyframe_extensions.py",
33+
"resources/narwhals_example.py",
34+
# plotly - no Python 3.14 support yet
35+
"plugins/test_plotly_extensions.py",
36+
# xgboost - no Python 3.14 support yet
37+
"plugins/test_xgboost_extensions.py",
38+
# lightgbm - no Python 3.14 support yet
39+
"plugins/test_lightgbm_extensions.py",
40+
# mlflow - no Python 3.14 support yet
41+
"plugins/test_mlflow_extension.py",
42+
# kedro - no Python 3.14 support yet
43+
"plugins/test_h_kedro.py",
44+
"plugins/test_kedro_extensions.py",
45+
# lancedb - no Python 3.14 support yet
46+
"plugins/test_huggingface_extensions.py",
47+
]
48+
)

tests/plugins/test_pandas_extensions.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,7 @@ def test_pandas_table_reader(tmp_path: pathlib.Path) -> None:
322322
]
323323

324324

325-
@pytest.mark.skipif(
326-
sys.version_info >= (3, 14), reason="pyreadstat not available on Python 3.14"
327-
)
325+
@pytest.mark.skipif(sys.version_info >= (3, 14), reason="pyreadstat not available on Python 3.14")
328326
def test_pandas_spss_reader(tmp_path: pathlib.Path) -> None:
329327
import pyreadstat
330328

0 commit comments

Comments
 (0)