Skip to content

Commit 0f15dcf

Browse files
committed
built(pip): fix dependencies installation context
1 parent 61fabe5 commit 0f15dcf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
cp sdk-specifications/features/subscribe/event-engine/happy-path_Legacy.feature tests/acceptance/subscribe/happy-path_Legacy.feature
8686
cp sdk-specifications/features/presence/event-engine/presence-engine_Legacy.feature tests/acceptance/subscribe/presence-engine_Legacy.feature
8787
88-
sudo pip3 install -r requirements-dev.txt
88+
sudo pip3 install --user --ignore-installed -r requirements-dev.txt
8989
behave --junit tests/acceptance/pam
9090
behave --junit tests/acceptance/encryption/cryptor-module.feature -t=~na=python -k
9191
behave --junit tests/acceptance/subscribe

.github/workflows/run-validations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: "3.11"
1717
- name: Install Python dependencies and run acceptance tests
1818
run: |
19-
sudo pip3 install -r requirements-dev.txt
19+
sudo pip3 install --user --ignore-installed -r requirements-dev.txt
2020
flake8 --exclude=scripts/,src/,.cache,.git,.idea,.tox,._trial_temp/,venv/ --ignore F811,E402
2121
- name: Cancel workflow runs for commit on error
2222
if: failure()

0 commit comments

Comments
 (0)