Skip to content

Commit 13a33be

Browse files
committed
verifying redis is still running
1 parent abbfcd2 commit 13a33be

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/testing.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,10 @@ jobs:
264264
- name: Build/Setup test components
265265
run: npm run setup-tests.py
266266

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+
267271
- name: Run Async Callback Tests
268272
run: |
269273
find packages -name dash-*.whl -print -exec sh -c 'pip install "{}[async]"' \;

0 commit comments

Comments
 (0)