Commit 5388db34 by Alexander Popov

Install 'coverage' in the unit-test CI workflow

parent 53f1fc78
...@@ -27,6 +27,11 @@ jobs: ...@@ -27,6 +27,11 @@ jobs:
- name: Get source code for collecting coverage - name: Get source code for collecting coverage
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Install coverage
run: |
python -m pip install --upgrade pip
pip install coverage
- name: Run unit-tests and collect coverage - name: Run unit-tests and collect coverage
run: | run: |
coverage run --include=kconfig_hardened_check/engine.py,kconfig_hardened_check/test_engine.py -m unittest -v coverage run --include=kconfig_hardened_check/engine.py,kconfig_hardened_check/test_engine.py -m unittest -v
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment