Skip to content

Commit 3b7dba8

Browse files
committed
Merge branch 'fix/dates-types-id' of github.com:plotly/dash into fix/dates-types-id
2 parents eada77b + e3e2f5f commit 3b7dba8

File tree

3 files changed

+38
-9
lines changed

3 files changed

+38
-9
lines changed

.circleci/config.yml

+36-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
orbs:
44
win: circleci/[email protected]
55
percy: percy/[email protected]
6-
browser-tools: circleci/browser-tools@1.4.8
6+
browser-tools: circleci/browser-tools@1.5.1
77

88

99
jobs:
@@ -99,7 +99,11 @@ jobs:
9999

100100
steps:
101101
- checkout
102-
- run: sudo apt-get update
102+
- run:
103+
name: Add chrome keys & update.
104+
command: |
105+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
106+
sudo apt-get update
103107
- run: echo $PYVERSION > ver.txt
104108
- run: cat requirements/*.txt > requirements-all.txt
105109
- restore_cache:
@@ -189,7 +193,11 @@ jobs:
189193
steps:
190194
- checkout:
191195
path: ~/dash
192-
- run: sudo apt-get update
196+
- run:
197+
name: Add chrome keys & update.
198+
command: |
199+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
200+
sudo apt-get update
193201
- run: echo $PYVERSION > ver.txt
194202
- run: cat requirements/*.txt > requirements-all.txt
195203
- restore_cache:
@@ -288,7 +296,11 @@ jobs:
288296
steps:
289297
- checkout:
290298
path: ~/dash
291-
- run: sudo apt-get update
299+
- run:
300+
name: Add chrome keys & update.
301+
command: |
302+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
303+
sudo apt-get update
292304
- run: echo $PYVERSION > ver.txt
293305
- run: cat requirements/*.txt > requirements-all.txt
294306
- restore_cache:
@@ -345,7 +357,11 @@ jobs:
345357
steps:
346358
- checkout:
347359
path: ~/dash
348-
- run: sudo apt-get update
360+
- run:
361+
name: Add chrome keys & update.
362+
command: |
363+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
364+
sudo apt-get update
349365
- run: echo $PYVERSION > ver.txt
350366
- run: cat requirements/*.txt > requirements-all.txt
351367
- restore_cache:
@@ -409,7 +425,11 @@ jobs:
409425
steps:
410426
- checkout:
411427
path: ~/dash
412-
- run: sudo apt-get update
428+
- run:
429+
name: Add chrome keys & update.
430+
command: |
431+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
432+
sudo apt-get update
413433
- run: echo $PYVERSION > ver.txt
414434
- run: cat requirements/*.txt > requirements-all.txt
415435
- restore_cache:
@@ -454,7 +474,11 @@ jobs:
454474
steps:
455475
- checkout:
456476
path: ~/dash
457-
- run: sudo apt-get update
477+
- run:
478+
name: Add chrome keys & update.
479+
command: |
480+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
481+
sudo apt-get update
458482
- run: echo $PYVERSION > ver.txt
459483
- run: cat requirements/*.txt > requirements-all.txt
460484
- restore_cache:
@@ -496,7 +520,11 @@ jobs:
496520
steps:
497521
- checkout:
498522
path: ~/dash
499-
- run: sudo apt-get update
523+
- run:
524+
name: Add chrome keys & update.
525+
command: |
526+
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
527+
sudo apt-get update
500528
- restore_cache:
501529
key: dep-{{ .Branch }}-{{ checksum "package-lock.json" }}-{{ checksum "package.json" }}
502530
- browser-tools/install-browser-tools:

components/dash-core-components/tests/integration/graph/test_graph_basics.py

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ def update_graph(n_clicks):
167167
assert dash_dcc.get_logs() == []
168168

169169

170+
@pytest.mark.skip(reason="customdata has broken with plotly.py 6")
170171
def test_grbs005_graph_customdata(dash_dcc):
171172
app = Dash(__name__)
172173

tests/integration/callbacks/test_layout_paths_with_callbacks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def check_chapter(chapter):
179179
+ "#{}-graph:not(.dash-graph--pending) .js-plotly-plot".format(
180180
chapter
181181
)
182-
+ '").layout.title.text'
182+
+ '").layout.title'
183183
)
184184
== value
185185
),

0 commit comments

Comments
 (0)