Skip to content

Commit

Permalink
Try to fix code coverage reporting (#416)
Browse files Browse the repository at this point in the history
Signed-off-by: John Collier <jcollier@redhat.com>
  • Loading branch information
johnmcollier authored Nov 21, 2023
1 parent 8941feb commit e64a4f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Run tests
run: make test
- name: Run Go Tests
run: |
go mod download
make unit-tests && make cdq-analysis-unit-tests
- name: Codecov
uses: codecov/codecov-action@v2.1.0
2 changes: 1 addition & 1 deletion controllers/start_test_env.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func SetupTestEnv() (client.Client, *envtest.Environment, context.Context, conte
logf.SetLogger(zap.New(zap.WriteTo(ginkgo.GinkgoWriter), zap.UseDevMode(true)))

ctx, cancel = context.WithCancel(context.TODO())
applicationAPIDepVersion := "v0.0.0-20230616144210-9dad8e40e3ed"
applicationAPIDepVersion := "v0.0.0-20231016183051-2dde965fce17"
spiAPIDepVersion := "v0.2023.22-0.20230713080056-eae17aa8c172"

ginkgo.By("bootstrapping test environment")
Expand Down

0 comments on commit e64a4f5

Please sign in to comment.