【发布时间】:2021-08-23 23:20:07
【问题描述】:
我在 gitlab 中使用 simplecov 为我的 ruby 项目生成测试报告。报告已成功生成,但输出格式不正确。在我的本地主机中,它以正确的格式生成输出。知道为什么会这样吗? 这是我的 gitlab-ci.yml 步骤的样子:
rspec:
stage: rspec
script:
- bundle exec rspec
allow_failure: false
artifacts:
name: test_report
paths:
- coverage/index.html
when: always
【问题讨论】:
标签: ruby gitlab gitlab-ci simplecov