gpt4 book ai didi

amazon-web-services - CodeBuild 不报告失败的测试

转载 作者:行者123 更新时间:2023-12-03 23:59:51 24 4
gpt4 key购买 nike

我正在使用 CodeBuild 来构建我的 NPM 项目。我的构建规范中有一个特定的报告组,我正在使用 Jest 和 npm test 运行单元测试。命令。
当所有测试通过后,成功上报到CodeBuild报告组。但是,如果其中一项测试失败,我会收到错误消息:

[Container] 2020/08/24 01:41:18 Phase context status code: COMMAND_EXECUTION_ERROR Message: Error while executing command: npm test -- --silent. Reason: exit status 1`
并且构建停止(通常很好)但未报告失败的测试,因此测试通过率保持在 100%,这意味着我看不到测试趋势或其他详细信息。
我的 buildspec.yml 的相关部分:
version: 0.2
phases:
install:
commands:
- npm install
pre_build:
commands:
- npm test -- --silent
reports:
jest_reports:
files:
- 'test-results.xml'
file-format: JunitXml
base-directory: "reports/results"
我的 package.json 中的 Jest 配置:
"jest": {
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "reports/results",
"outputName": "test-results.xml"
}
]
]
}
CodeBuild 日志的最后一部分:
Test Suites: 1 failed, 8 passed, 9 total
Tests: 2 failed, 57 passed, 59 total
Snapshots: 0 total
Time: 3.034s
npm ERR! Test failed. See above for more details.

[Container] 2020/08/24 01:41:18 Command did not exit successfully npm test -- --silent exit status 1
[Container] 2020/08/24 01:41:18 Phase complete: PRE_BUILD State: FAILED
[Container] 2020/08/24 01:41:18 Phase context status code: COMMAND_EXECUTION_ERROR Message: Error while executing command: npm test -- --silent. Reason: exit status 1
如何设置 CodeBuild 来报告失败的测试,但如果测试失败,仍然阻止它继续构建?

最佳答案

在研究这一点时,我看到的所有使用 CodeBuild 测试报告的示例,这些测试都是作为 build 的一部分运行的。阶段。
由于您的测试在 pre_build相,若pre_build失败,它不会继续到 upload_artifacts阶段,将直接跳到 finalizing . See the CodeBuild phase transitions diagram for more information on this.
我建议遵循用户指南的模式并将您的测试放在 build 中。阶段。
用户指南引用:

  • https://aws.amazon.com/blogs/devops/test-reports-with-aws-codebuild/
  • https://docs.aws.amazon.com/codebuild/latest/userguide/sample-test-report-cli.html
  • 关于amazon-web-services - CodeBuild 不报告失败的测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63553921/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com