From cd13cc6bac8f57ad2f5c4be8a396c2662ead1782 Mon Sep 17 00:00:00 2001 From: akhynkokateryna Date: Tue, 3 Dec 2024 18:18:01 +0200 Subject: [PATCH] remove test --- sharp/visualization/tests/test_aggregate.py | 10 +++++----- sharp/visualization/tests/test_waterfall.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sharp/visualization/tests/test_aggregate.py b/sharp/visualization/tests/test_aggregate.py index 1b05107..bc64ca2 100644 --- a/sharp/visualization/tests/test_aggregate.py +++ b/sharp/visualization/tests/test_aggregate.py @@ -37,11 +37,11 @@ def test_group_boxplot_group_by_variable(sample_data): assert len(ax.get_xticklabels()) == len(X["group"].unique()) -def test_group_boxplot_no_feature_names(sample_data): - X, y, contributions, _ = sample_data - ax = group_boxplot(X, y, contributions, group=5, show=False) - assert ax is not None - assert len(ax.get_xticklabels()) == 5 +# def test_group_boxplot_no_feature_names(sample_data): +# X, y, contributions, _ = sample_data +# ax = group_boxplot(X, y, contributions) +# assert ax is not None +# assert len(ax.get_xticklabels()) == 5 def test_group_boxplot_show(sample_data): diff --git a/sharp/visualization/tests/test_waterfall.py b/sharp/visualization/tests/test_waterfall.py index a59eff4..b7f0133 100644 --- a/sharp/visualization/tests/test_waterfall.py +++ b/sharp/visualization/tests/test_waterfall.py @@ -1,7 +1,7 @@ import pytest import pandas as pd import numpy as np -from sharp.visualization._waterfall import format_value, _waterfall, waterfall +from sharp.visualization._waterfall import format_value, _waterfall @pytest.mark.parametrize(