Skip to content

Commit

Permalink
Merge branch 'dev' into dash-3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
T4rk1n committed Feb 5, 2025
2 parents b711247 + 39a9da4 commit 7caf01e
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 9 deletions.
44 changes: 36 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
orbs:
win: circleci/[email protected]
percy: percy/[email protected]
browser-tools: circleci/browser-tools@1.4.8
browser-tools: circleci/browser-tools@1.5.1


jobs:
Expand Down Expand Up @@ -99,7 +99,11 @@ jobs:

steps:
- checkout
- run: sudo apt-get update
- run:
name: Add chrome keys & update.
command: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
- run: echo $PYVERSION > ver.txt
- run: cat requirements/*.txt > requirements-all.txt
- restore_cache:
Expand Down Expand Up @@ -189,7 +193,11 @@ jobs:
steps:
- checkout:
path: ~/dash
- run: sudo apt-get update
- run:
name: Add chrome keys & update.
command: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
- run: echo $PYVERSION > ver.txt
- run: cat requirements/*.txt > requirements-all.txt
- restore_cache:
Expand Down Expand Up @@ -288,7 +296,11 @@ jobs:
steps:
- checkout:
path: ~/dash
- run: sudo apt-get update
- run:
name: Add chrome keys & update.
command: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
- run: echo $PYVERSION > ver.txt
- run: cat requirements/*.txt > requirements-all.txt
- restore_cache:
Expand Down Expand Up @@ -345,7 +357,11 @@ jobs:
steps:
- checkout:
path: ~/dash
- run: sudo apt-get update
- run:
name: Add chrome keys & update.
command: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
- run: echo $PYVERSION > ver.txt
- run: cat requirements/*.txt > requirements-all.txt
- restore_cache:
Expand Down Expand Up @@ -409,7 +425,11 @@ jobs:
steps:
- checkout:
path: ~/dash
- run: sudo apt-get update
- run:
name: Add chrome keys & update.
command: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
- run: echo $PYVERSION > ver.txt
- run: cat requirements/*.txt > requirements-all.txt
- restore_cache:
Expand Down Expand Up @@ -454,7 +474,11 @@ jobs:
steps:
- checkout:
path: ~/dash
- run: sudo apt-get update
- run:
name: Add chrome keys & update.
command: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
- run: echo $PYVERSION > ver.txt
- run: cat requirements/*.txt > requirements-all.txt
- restore_cache:
Expand Down Expand Up @@ -496,7 +520,11 @@ jobs:
steps:
- checkout:
path: ~/dash
- run: sudo apt-get update
- run:
name: Add chrome keys & update.
command: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get update
- restore_cache:
key: dep-{{ .Branch }}-{{ checksum "package-lock.json" }}-{{ checksum "package.json" }}
- browser-tools/install-browser-tools:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ def update_graph(n_clicks):
assert dash_dcc.get_logs() == []


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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def check_chapter(chapter):
+ "#{}-graph:not(.dash-graph--pending) .js-plotly-plot".format(
chapter
)
+ '").layout.title.text'
+ '").layout.title'
)
== value
),
Expand Down

0 comments on commit 7caf01e

Please sign in to comment.