def test_html_report(self): html = to_html(self.df.head(), self.results) self.assertLess(1000, len(html))
def __init__(self, df): description_set = describe(df) self.html = to_html(df.head(), description_set)