Skip to content

Commit 0d946ad

Browse files
committed
cleanup
1 parent 346da10 commit 0d946ad

File tree

2 files changed

+0
-26
lines changed

2 files changed

+0
-26
lines changed

.circleci/config.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -218,26 +218,6 @@ jobs:
218218
npm ci
219219
pip install dash-package/dash-package.tar.gz[ci,dev,testing,celery,diskcache] --progress-bar off
220220
pip list
221-
- run:
222-
name: DEBUG - Python Environment and Redis Importability
223-
command: |
224-
# Activate your virtualenv (e.g., source venv/bin/activate)
225-
echo "Python Executable: $(which python)"
226-
echo "Python Version: $(python --version)"
227-
echo "Setuptools Version: $(python -c 'import setuptools; print(setuptools.__version__)' || echo 'Setuptools not found')"
228-
echo "Pip Version: $(pip --version)"
229-
echo "--- sys.path ---"
230-
python -c "import sys; print(sys.path)"
231-
echo "--- Current Directory (pwd): $(pwd) ---"
232-
ls -la
233-
echo "--- Looking for local redis.py (potential shadowing) ---"
234-
find . -name "redis.py" -print
235-
echo "--- Full pip freeze ---"
236-
pip freeze
237-
echo "--- Attempting direct import of 'redis' ---"
238-
python -c "import redis; print(f'Successfully imported redis version {redis.__version__} from {redis.__file__}')" || echo "Direct import of 'redis' FAILED"
239-
echo "--- Attempting to access Celery's Redis backend module (conceptual check) ---"
240-
python -c "from celery.backends import redis as celery_redis_backend; print(f'Celery was able to access its redis backend module: {celery_redis_backend.__file__}')" || echo "Accessing Celery's redis backend module FAILED"
241221
- run:
242222
name: 🧪 Run Integration Tests
243223
command: |

.github/workflows/background-tests.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,10 @@ jobs:
110110
- name: Install build tools (and pin setuptools if needed)
111111
run: |
112112
python -m pip install --upgrade pip wheel
113-
# IMPORTANT: If setuptools >80.0.0 causes issues, pin it here
114113
python -m pip install "setuptools<80.0.0"
115114
116115
- name: Install Dash dependencies
117116
run: |
118-
# Mirroring how Dash installs its extras, adjust if your needs are simpler
119117
pip install -e .[ci,testing,dev,celery,diskcache]
120118
python -m pip install "selenium==4.32.0"
121119
@@ -124,10 +122,6 @@ jobs:
124122

125123
- name: Verify Redis connection
126124
run: |
127-
# Optional: A quick check that Redis is accessible. Requires redis-cli.
128-
# sudo apt-get update && sudo apt-get install -y redis-tools # If redis-cli is not in the runner
129-
# redis-cli -h localhost -p 6379 ping
130-
# Alternatively, a python script:
131125
python -c "import redis; r = redis.Redis(host='localhost', port=6379, db=0); r.ping(); print('Successfully connected to Redis!')"
132126
133127
- name: Run Background Callback Tests

0 commit comments

Comments
 (0)