Skip to content

Commit f3cbaf2

Browse files
committed
Uninstall redis wheel installed as redis-entraid dep
1 parent 2b65eff commit f3cbaf2

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

.github/actions/run-tests/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ runs:
3939
pip install -U setuptools wheel
4040
pip install -r requirements.txt
4141
pip install -r dev_requirements.txt
42+
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
43+
pip install -e . # install the working copy
4244
if [ "${{inputs.parser-backend}}" == "hiredis" ]; then
4345
pip install "hiredis${{inputs.hiredis-version}}"
4446
echo "PARSER_BACKEND=$(echo "${{inputs.parser-backend}}_${{inputs.hiredis-version}}" | sed 's/[^a-zA-Z0-9]/_/g')" >> $GITHUB_ENV

.github/workflows/install_and_test.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ python -m venv ${DESTENV}
2121
source ${DESTENV}/bin/activate
2222
pip install --upgrade --quiet pip
2323
pip install --quiet -r dev_requirements.txt
24+
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
2425
invoke devenv --endpoints=all-stack
2526
invoke package
2627

.github/workflows/integration.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
- name: run code linters
5555
run: |
5656
pip install -r dev_requirements.txt
57+
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
5758
invoke linters
5859
5960
redis_version:

.github/workflows/pypi-publish.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
- name: Install dev tools
2222
run: |
2323
pip install -r dev_requirements.txt
24+
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
2425
pip install build twine wheel
2526
2627
- name: Build package

0 commit comments

Comments
 (0)