基于 StackOverflow 上的这个问题,我将测试覆盖率添加到我的 Gitlab CI/CD YAML 文件中,我希望结果会上传到 codeclimate。
- go get github.com/axw/gocov/gocov
- export CC_TEST_REPORTER_ID=My_REPO_ID
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
- gocov test -v ./... -coverprofile=out
- ./cc-test-reporter format-coverage --input-type gocov out
- ./cc-test-reporter upload-coverage
该脚本在我的所有包中成功运行测试,CI/CD 的输出显示不同包中的所有测试都运行了,但上传到 codeclimate 的报告仅显示只有一个文件具有测试覆盖率,即最后一个测试包,而不是全部显示。