Skip to content

Commit

Permalink
fix: Instalation of gcovr in host tests was broken
Browse files Browse the repository at this point in the history
Fix instalation by allowing pip to avoid system packages.
  • Loading branch information
euripedesrocha committed May 23, 2024
1 parent 72feca4 commit 6643c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/mqtt__host-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Run gcovr
shell: bash
run: |
python -m pip install gcovr
python -m pip install gcovr --break-system-packages
cd $IDF_PATH/${{ env.COMP_DIR }}
gcov -b host_test/main/mqtt_client.c. -o `find . -name "mqtt_client*gcda" -exec dirname {} \;`
gcovr --gcov-ignore-parse-errors -g -k -r . --html index.html -x esp_mqtt_coverage.xml
Expand Down

0 comments on commit 6643c49

Please sign in to comment.