Skip to content

Commit 6643c49

Browse files
fix: Instalation of gcovr in host tests was broken
Fix instalation by allowing pip to avoid system packages.
1 parent 72feca4 commit 6643c49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/mqtt__host-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Run gcovr
4444
shell: bash
4545
run: |
46-
python -m pip install gcovr
46+
python -m pip install gcovr --break-system-packages
4747
cd $IDF_PATH/${{ env.COMP_DIR }}
4848
gcov -b host_test/main/mqtt_client.c. -o `find . -name "mqtt_client*gcda" -exec dirname {} \;`
4949
gcovr --gcov-ignore-parse-errors -g -k -r . --html index.html -x esp_mqtt_coverage.xml

0 commit comments

Comments
 (0)