Skip to content

Commit

Permalink
Use pip3 install --user due to permission issue
Browse files Browse the repository at this point in the history
  • Loading branch information
opoplawski committed Mar 10, 2024
1 parent bb98490 commit 79a140c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Mark directory as safe for Git
run: git config --global --add safe.directory /__w/koan/koan
- name: Install dependencies
run: pip3 install .
run: pip3 install --user .
- name: Build a binary wheel and a source tarball
run: make release
- name: Show tree
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install package deps
run: zypper -n in --no-recommends python3-devel python3-wheel python3-pip python3-libvirt-python python3-codecov gcc make
- name: Install dependencies
run: pip3 install .[lint,test]
run: pip3 install --user .[lint,test]
- name: Run tests
run: pytest --cov=./koan
- name: Upload report to codecov
Expand Down

0 comments on commit 79a140c

Please sign in to comment.