Skip to content

Commit 2fbf787

Browse files
committed
ci: brew install gcovr instead of pip install
`python3 -u -m pip install gcovr` raised error: externally-managed-environment
1 parent f96f0e5 commit 2fbf787

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/macos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ jobs:
201201
- name: Generate coverage report
202202
if: always() && matrix.codecov
203203
run: |
204-
python3 -u -m pip install --user gcovr
205-
python3 -m gcovr \
204+
brew install gcovr
205+
gcovr \
206206
--exclude-unreachable-branches \
207207
--gcov-ignore-parse-errors \
208208
--root . \

0 commit comments

Comments
 (0)