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 b931fd5 commit addfd47Copy full SHA for addfd47
packages/python/plotly/plotly/tests/test_optional/test_graph_objs/test_performance.py
@@ -34,7 +34,7 @@ def test_performance_b64_scatter3d():
34
)
35
]
36
37
- fig.show()
+ fig.show(renderer="png", engine="kaleido")
38
list_time_elapsed = time.time() - list_start
39
40
# Test the performance with base64 arrays
@@ -51,13 +51,12 @@ def test_performance_b64_scatter3d():
51
52
53
54
55
- # Then close the window
56
57
np_time_elapsed = time.time() - np_start
58
59
# np should be faster than lists
60
- assert (np_time_elapsed / list_time_elapsed) < 0.65
+ assert (np_time_elapsed / list_time_elapsed) < 0.7
61
62
63
# FLOAT_TEST_CASES = [
0 commit comments