Limit code coverage to unit tests - any integration tests should not be considered as coverage

This commit is contained in:
Hamish Coleman 2021-11-05 12:42:51 +00:00
parent 351f7628d0
commit 9cc04d6b28

View File

@ -91,8 +91,8 @@ jobs:
./configure ./configure
shell: bash shell: bash
- name: Run embedded tests - name: Run embedded unit tests
run: make test run: make test.units
shell: bash shell: bash
- if: ${{ always() }} - if: ${{ always() }}
@ -162,8 +162,8 @@ jobs:
./configure ./configure
shell: bash shell: bash
- name: Run embedded tests - name: Run embedded unit tests
run: make test run: make test.units
shell: bash shell: bash
- if: ${{ always() }} - if: ${{ always() }}
@ -237,8 +237,8 @@ jobs:
./scripts/hack_fakeautoconf.sh ./scripts/hack_fakeautoconf.sh
shell: bash shell: bash
- name: Run embedded tests - name: Run embedded unit tests
run: make test run: make test.units
shell: bash shell: bash
- if: ${{ always() }} - if: ${{ always() }}