We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abbfcd2 commit 13a33beCopy full SHA for 13a33be
.github/workflows/testing.yml
@@ -264,6 +264,10 @@ jobs:
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: |
273
find packages -name dash-*.whl -print -exec sh -c 'pip install "{}[async]"' \;
0 commit comments