Skip to content

Commit 108f7d9

Browse files
committed
Fix background tests install celery,diskcache
1 parent e0a8939 commit 108f7d9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/testing.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ jobs:
100100
run: npm run setup-tests.py # TODO build the packages and save them to packages/ in build job
101101

102102
- name: Run typing tests
103-
run: pytest tests/compliance/test_typing.py
103+
run: |
104+
cd @plotly/dash-test-components
105+
pytest tests/compliance/test_typing.py
104106
105107
background-callbacks:
106108
name: Run Background Callback Tests (Python ${{ matrix.python-version }})
@@ -157,7 +159,7 @@ jobs:
157159
python -m pip install --upgrade pip wheel
158160
python -m pip install "setuptools<80.0.0"
159161
python -m pip install "selenium==4.32.0"
160-
find packages -name dash-*.whl -print -exec sh -c 'pip install "{}[ci,testing,dev]"' \;
162+
find packages -name dash-*.whl -print -exec sh -c 'pip install "{}[ci,testing,dev,celery,diskcache]"' \;
161163
162164
- name: Install Google Chrome
163165
run: |

0 commit comments

Comments
 (0)