Skip to content

Commit 25f6ccf

Browse files
committed
Print pio.renderers to debug
1 parent 8823a8c commit 25f6ccf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/python/plotly/plotly/tests/test_optional/test_graph_objs/test_performance.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import time
22
import numpy as np
33
import plotly.graph_objs as go
4+
import plotly.io as pio
45
import pytest
56

67
np.random.seed(1)
@@ -50,6 +51,9 @@ def test_performance_b64_scatter3d():
5051
]
5152
)
5253
fig.show()
54+
# Then close the window
55+
print(pio.renderers)
56+
5357
np_time_elapsed = time.time() - np_start
5458

5559
# np should be faster than lists

0 commit comments

Comments
 (0)