()
| 63 | |
| 64 | @pytest.mark.skip |
| 65 | def test_bar_data(): |
| 66 | fig, ax = plt.subplots() |
| 67 | ax.bar(D["x1"], D["y1"]) |
| 68 | renderer = run_fig(fig) |
| 69 | for yi, yf in zip(renderer.plotly_fig["data"][0]["y"], D["y1"]): |
| 70 | assert yi == yf, ( |
| 71 | str(renderer.plotly_fig["data"][0]["y"]) + " is not " + str(D["y1"]) |
| 72 | ) |
| 73 | |
| 74 | |
| 75 | @pytest.mark.skip |