Skip to content

Commit b931fd5

Browse files
committed
Debug
1 parent 25f6ccf commit b931fd5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ commands:
5252
cd packages/python/plotly-geo
5353
. ../plotly/venv/bin/activate
5454
pip install -e .
55-
- run:
56-
name: Test core
57-
command: |
58-
cd packages/python/plotly
59-
. venv/bin/activate
60-
pytest plotly/tests/test_core
61-
no_output_timeout: 20m
55+
# - run:
56+
# name: Test core
57+
# command: |
58+
# cd packages/python/plotly
59+
# . venv/bin/activate
60+
# pytest plotly/tests/test_core
61+
# no_output_timeout: 20m
6262
- run:
6363
name: Test optional
6464
command: |
6565
cd packages/python/plotly
6666
. venv/bin/activate
67-
pytest plotly/tests/test_optional/test_graph_objs/test_performance.py -v
67+
pytest plotly/tests/test_optional/test_graph_objs/test_performance.py -v -s
6868
no_output_timeout: 40m
6969
- run:
7070
name: Test utils

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
def test_performance_b64_scatter3d():
1111
N = 10000
12+
print(pio.renderers)
1213

1314
x = np.random.randn(N)
1415
y = np.random.randn(N).astype("float32")
@@ -52,7 +53,6 @@ def test_performance_b64_scatter3d():
5253
)
5354
fig.show()
5455
# Then close the window
55-
print(pio.renderers)
5656

5757
np_time_elapsed = time.time() - np_start
5858

0 commit comments

Comments
 (0)