Skip to content

Commit 43d10c4

Browse files
committed
attempt to fix failing test
1 parent e8bcb22 commit 43d10c4

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -253,28 +253,14 @@ jobs:
253253
run: |
254254
python -c "import redis; r = redis.Redis(host='localhost', port=6379, db=0); r.ping(); print('Successfully connected to Redis!')"
255255
256-
- name: Run Background Callback Tests
256+
- name: Run Background & Async Callback Tests
257257
run: |
258258
mkdir bgtests
259259
cp -r tests bgtests/tests
260260
cd bgtests
261261
touch __init__.py
262262
pytest --headless --nopercyfinalize tests/background_callback -v -s
263-
264-
- name: Build/Setup test components
265-
run: npm run setup-tests.py
266-
267-
- name: Verify Redis connection
268-
run: |
269-
python -c "import redis; r = redis.Redis(host='localhost', port=6379, db=0); r.ping(); print('Successfully connected to Redis!')"
270-
271-
- name: Run Async Callback Tests
272-
run: |
273263
find packages -name dash-*.whl -print -exec sh -c 'pip install "{}[async]"' \;
274-
mkdir astests
275-
cp -r tests astests/tests
276-
cd astests
277-
touch __init__.py
278264
pytest --headless --nopercyfinalize -k test_async -v -s
279265
280266
table-unit:

0 commit comments

Comments
 (0)