File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -156,7 +156,14 @@ jobs:
156156 - name : Test celery pinned
157157 run : |
158158 set -x # print commands that are executed
159- ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-celery"
159+ ./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-celery" || true
160+ # Add process cleanup to handle hanging processes
161+ echo "Checking for hanging processes after tests..."
162+ ps aux | grep -i 'celery\|python\|redis' || true
163+ echo "Attempting to terminate any hanging processes..."
164+ pkill -f 'celery' || true
165+ pkill -f 'beat' || true
166+ echo "Test celery pinned step completed"
160167 - name : Test dramatiq pinned
161168 run : |
162169 set -x # print commands that are executed
You can’t perform that action at this time.
0 commit comments