Skip to content

Commit 2eab6cd

Browse files
authored
Merge pull request #345 from py-cov-action/fix-pipx
2 parents 6d40a87 + a22c091 commit 2eab6cd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ jobs:
2525
python-version: "3.11"
2626

2727
- name: Install Poetry
28+
# https://github.com/pypa/pipx/issues/1195
2829
run: |
29-
pipx install poetry --python=python3.11
30+
pipx install poetry --python="$(command -v python3.11)"
3031
3132
- name: Poetry caches
3233
uses: actions/cache@v3

.github/workflows/e2e-external-phase-2.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,9 @@ jobs:
9494
python-version: "3.11"
9595

9696
- name: Install Poetry
97+
# https://github.com/pypa/pipx/issues/1195
9798
run: |
98-
pipx install poetry --python=python3.11
99+
pipx install poetry --python="$(command -v python3.11)"
99100
100101
- name: Poetry caches
101102
uses: actions/cache@v3

0 commit comments

Comments
 (0)