Simplecov 没有以正确的格式在 gitlab 中生成报告
Simplecov not generating reports in gitlab in proper format
我正在使用 simplecov 为我在 gitlab 中的 ruby 项目生成测试报告。报告已成功生成,但输出格式不正确。在我的本地主机中,它以正确的格式生成输出。知道为什么会这样吗?
这是我的 gitlab-ci.yml 步骤的样子:
rspec:
stage: rspec
script:
- bundle exec rspec
allow_failure: false
artifacts:
name: test_report
paths:
- coverage/index.html
when: always
SimpleCov 除了 index.html 之外还生成了一堆文件,我猜也有一些样式,所以您可以尝试将文件夹添加到 gitlab 工件而不是只添加 index.html
我正在使用 simplecov 为我在 gitlab 中的 ruby 项目生成测试报告。报告已成功生成,但输出格式不正确。在我的本地主机中,它以正确的格式生成输出。知道为什么会这样吗? 这是我的 gitlab-ci.yml 步骤的样子:
rspec:
stage: rspec
script:
- bundle exec rspec
allow_failure: false
artifacts:
name: test_report
paths:
- coverage/index.html
when: always
SimpleCov 除了 index.html 之外还生成了一堆文件,我猜也有一些样式,所以您可以尝试将文件夹添加到 gitlab 工件而不是只添加 index.html