From 9cc04d6b2858d79f555bd4a09784557b0ba8962b Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Fri, 5 Nov 2021 12:42:51 +0000 Subject: [PATCH] Limit code coverage to unit tests - any integration tests should not be considered as coverage --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 68e5906..5d9165f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -91,8 +91,8 @@ jobs: ./configure shell: bash - - name: Run embedded tests - run: make test + - name: Run embedded unit tests + run: make test.units shell: bash - if: ${{ always() }} @@ -162,8 +162,8 @@ jobs: ./configure shell: bash - - name: Run embedded tests - run: make test + - name: Run embedded unit tests + run: make test.units shell: bash - if: ${{ always() }} @@ -237,8 +237,8 @@ jobs: ./scripts/hack_fakeautoconf.sh shell: bash - - name: Run embedded tests - run: make test + - name: Run embedded unit tests + run: make test.units shell: bash - if: ${{ always() }}