Redux: Add Unit Test Coverage to CI (#3524)

* Added Github action to run unit tests and connect to Codecov

Signed-off-by: dereknola <derek.nola@suse.com>
This commit is contained in:
Derek Nola 2021-06-29 11:27:50 -07:00 committed by GitHub
parent 04398a2582
commit 7242ce9316
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 41 additions and 2 deletions

9
.github/.codecov.yml vendored Normal file
View File

@ -0,0 +1,9 @@
coverage:
status:
project:
default: false # disable the default status that measures entire project
pkg: # declare a new status context "pkg"
paths:
- pkg/* # only include coverage in "pkg/" folder
informational: true # Always pass check
patch: off # disable the commit only checks

27
.github/workflows/unitcoverage.yaml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Unit Test Coverage
on: [push, pull_request]
jobs:
test:
name: Unit Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-18.04, ubuntu-20.04]
timeout-minutes: 20
steps:
- name: Install Go
uses: actions/setup-go@v2
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Run Unit Tests
run: |
go test ./pkg/... -coverprofile coverage.out
go tool cover -func coverage.out
- name: Upload Results To Codecov
uses: codecov/codecov-action@v1
with:
files: ./coverage.out
flags: unittests # optional
verbose: true # optional (default = false)

View File

@ -21,6 +21,7 @@ echo "Did test-run-basics $?"
. ./scripts/test-run-compat
echo "Did test-run-compat $?"
# ---
[ "$ARCH" != 'amd64' ] && \
@ -38,4 +39,6 @@ echo "Did test-run-sonobuoy $?"
test-run-sonobuoy mysql
test-run-sonobuoy postgres
. ./scripts/test-unit
exit 0

2
scripts/test-unit Executable file
View File

@ -0,0 +1,2 @@
#!/bin/bash
go test -cover -v ./pkg/...

View File

@ -32,5 +32,3 @@ if [ -n "$DIRTY" ]; then
git diff
exit 1
fi
"${GO}" test -v ./pkg/...