workflows: include splunk_logger sub module in tests
This commit is contained in:
parent
a4068b328d
commit
11f707d277
3 changed files with 10 additions and 2 deletions
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -33,7 +33,7 @@ jobs:
|
||||||
run: git config --global --add safe.directory "$(pwd)"
|
run: git config --global --add safe.directory "$(pwd)"
|
||||||
|
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
run: go test -race -covermode=atomic -coverprofile=coverage.txt -coverpkg=$(go list ./... | grep -v rpmmd/test$ | tr "\n" ",") ./...
|
run: make unit-tests
|
||||||
|
|
||||||
- uses: codecov/codecov-action@v4
|
- uses: codecov/codecov-action@v4
|
||||||
if: env.CODECOV_TOKEN
|
if: env.CODECOV_TOKEN
|
||||||
|
|
|
||||||
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -17,3 +17,6 @@ __pycache__
|
||||||
container_composer_golangci_built.info
|
container_composer_golangci_built.info
|
||||||
processed-templates
|
processed-templates
|
||||||
|
|
||||||
|
coverage.txt
|
||||||
|
|
||||||
|
coverage_splunk_logger.txt
|
||||||
|
|
|
||||||
7
Makefile
7
Makefile
|
|
@ -234,8 +234,13 @@ worker-key-pair: ca
|
||||||
rm /etc/osbuild-composer/worker-csr.pem
|
rm /etc/osbuild-composer/worker-csr.pem
|
||||||
|
|
||||||
.PHONY: unit-tests
|
.PHONY: unit-tests
|
||||||
|
.ONESHELL:
|
||||||
unit-tests:
|
unit-tests:
|
||||||
go test -race ./...
|
go test -race -covermode=atomic -coverprofile=coverage.txt -coverpkg=$$(go list ./... | grep -v rpmmd/test$ | tr "\n" ",") ./...
|
||||||
|
# go modules with go.mod in subdirs are not tested automatically
|
||||||
|
cd pkg/splunk_logger
|
||||||
|
go test -race -covermode=atomic -coverprofile=../../coverage_splunk_logger.txt -coverpkg=$$(go list ./... | grep -v rpmmd/test$ | tr "\n" ",") ./...
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Building packages
|
# Building packages
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue