We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8823a8c commit 25f6ccfCopy full SHA for 25f6ccf
packages/python/plotly/plotly/tests/test_optional/test_graph_objs/test_performance.py
@@ -1,6 +1,7 @@
1
import time
2
import numpy as np
3
import plotly.graph_objs as go
4
+import plotly.io as pio
5
import pytest
6
7
np.random.seed(1)
@@ -50,6 +51,9 @@ def test_performance_b64_scatter3d():
50
51
]
52
)
53
fig.show()
54
+ # Then close the window
55
+ print(pio.renderers)
56
+
57
np_time_elapsed = time.time() - np_start
58
59
# np should be faster than lists
0 commit comments