Skip to content

Commit ecf7c89

Browse files
authored
fix test_config (skrub-data#1668)
1 parent 0e474a8 commit ecf7c89

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

skrub/tests/test_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from skrub import TableReport, config_context, get_config, set_config
55
from skrub._config import _parse_env_bool
66
from skrub._data_ops._evaluation import evaluate
7-
from skrub.conftest import polars_installed_without_pyarrow
7+
from skrub.conftest import skip_polars_installed_without_pyarrow
88

99

1010
def _use_table_report(obj):
@@ -51,7 +51,7 @@ def test_use_table_report_data_ops(simple_df):
5151
assert not _use_table_report(X)
5252

5353

54-
@polars_installed_without_pyarrow
54+
@skip_polars_installed_without_pyarrow
5555
def test_use_table_report(simple_df):
5656
assert not _use_table_report(simple_df)
5757
with config_context(use_table_report=True):
@@ -60,7 +60,7 @@ def test_use_table_report(simple_df):
6060
assert not _use_table_report(simple_df)
6161

6262

63-
@polars_installed_without_pyarrow
63+
@skip_polars_installed_without_pyarrow
6464
def test_max_plot_columns(simple_df):
6565
report = TableReport(simple_df)
6666
assert report.max_association_columns == 30
@@ -109,7 +109,7 @@ def test_enable_subsampling(simple_df):
109109
assert evaluate(dataop.skb.subsample(n=3), mode="preview").shape[0] == 3
110110

111111

112-
@polars_installed_without_pyarrow
112+
@skip_polars_installed_without_pyarrow
113113
def test_float_precision(simple_series):
114114
# Default config: float_precision set to 3
115115
report = TableReport(simple_series)

0 commit comments

Comments
 (0)