We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70fa3af commit dabd4bfCopy full SHA for dabd4bf
.github/workflows/run-host-tests.yml
@@ -87,8 +87,10 @@ jobs:
87
shell: bash
88
if: ${{ inputs.run_coverage }}
89
run: |
90
- apt-get update && apt-get install -y python3-pip rsync
91
- python -m pip install gcovr
+ apt-get update && apt-get install -y rsync
+ python3 -m venv .venv
92
+ source .venv/bin/activate
93
+ python3 -m pip install gcovr
94
cd $GITHUB_WORKSPACE/${{inputs.component_path}}
95
component=$(basename ${{ inputs.component_path }})
96
gcov `find . -name "$component*gcda"`
0 commit comments