diff --git a/skbase/testing/test_all_objects.py b/skbase/testing/test_all_objects.py index 6c6cc79a..a094c1b2 100644 --- a/skbase/testing/test_all_objects.py +++ b/skbase/testing/test_all_objects.py @@ -736,9 +736,13 @@ def test_clone(self, object_instance): assert not obj_clone.is_fitted def test_repr(self, object_instance): - """Check we can call repr.""" + """Check that __repr__ call to instance does not raise exceptions.""" repr(object_instance) + def test_repr_html(self, object_instance): + """Check that _repr_html_ call to instance does not raise exceptions.""" + object_instance._repr_html_() + def test_constructor(self, object_class): """Check that the constructor has sklearn compatible signature and behaviour.