def test_bokeh(self): x = [1, 2, 3, 4, 5] y = [6, 7, 2, 4, 5] plot = figure(title="bokeh example", x_axis_label='x', y_axis_label='y') plot.line(x, y, legend="Temp", line_width=2) convert_to_html(plot)