Junit CircleCI:如何配置测试结果存储?

Junit CircleCI:如何配置测试结果存储?,junit,circleci,cypress,Junit,Circleci,Cypress,我正在CircleCI环境中使用Cypress集成测试。目前,我的CircleCI配置无法将测试报告存储为工件并包含摘要。屏幕截图和视频已成功存储。我包括了config.yml和CircleCI仪表板的屏幕截图 我查阅了CircleCI文档的以下几页: 我注意到我的问题与你的相似 任何指点都将不胜感激。谢谢大家! config.yml version: 2 jobs: build: working_directory: ~/nodefront docker:

我正在CircleCI环境中使用Cypress集成测试。目前,我的CircleCI配置无法将测试报告存储为工件并包含摘要。屏幕截图和视频已成功存储。我包括了
config.yml
和CircleCI仪表板的屏幕截图

我查阅了CircleCI文档的以下几页:

我注意到我的问题与你的相似

任何指点都将不胜感激。谢谢大家!

config.yml

version: 2
jobs:
  build:
    working_directory: ~/nodefront
    docker:
      - image: cypress/base:6
        environment:
          TERM: xterm
    parallelism: 1
    steps:
      - checkout
      - restore_cache:
          name: Restoring cached yarn dependencies
          key: v3-deps-{{ .Branch }}-{{ checksum "yarn.lock" }}
      - run:
          name: Installing dependencies with yarn
          command: |
            yarn install --frozen-lockfile
            yarn list
      - save_cache: 
          name: Caching yarn dependencies
          key: v3-deps-{{ checksum "package.json" }}
          paths:
            - ~/.cache
      - run: mkdir -p integration-tests/test-results/junit integration-tests/cypress/videos integration-tests/cypress/screenshots
      - run:
          name: Running E2E tests with JUnit reporter
          command: $(yarn bin)/cypress run --project ./integration-tests --reporter junit --record --key 77ffe06e-0fe2-4b33-a5ff-4dcdf9e31c91
          environment: 
            MOCHA_FILE: integration-tests/test-results/junit/test-results-[hash].xml
          when: always
      - store_test_results:
          path: integration-tests/test-results
      - store_artifacts:
          path: integration-tests/test-results
      - store_artifacts:
          path: integration-tests/cypress/videos
      - store_artifacts:
          path: integration-tests/cypress/screenshots
屏幕截图

好吧,自从我发布之后,存储库发生了一些重大的结构变化。。。但我会在这里发布config.yml的相关部分。我无法确定我们做了什么来修复它,但其中的一部分是为Cypress子文件夹(集成测试)提供自己的package.json,将相关脚本放入其中,并继续使用更干净的.circleci/config.yml。我们取出
mkdir
语句和环境对象

test_cypress:
working_directory: ~/theintercept
docker:
  - image: cypress/base:6
    environment:
      TERM: xterm
parallelism: 1
steps:
  - checkout
  - restore_cache:
      name: Restoring cached yarn dependencies
      keys:
        - integration-tests-yarn-dependencies-{{ checksum "integration-tests/yarn.lock" }}
  - run:
      name: Installing dependencies with yarn
      command: |
        cd integration-tests
        yarn install --frozen-lockfile
        yarn list
  - save_cache:
      name: Caching yarn dependencies
      key: integration-tests-yarn-dependencies-{{ checksum "integration-tests/yarn.lock" }}
      paths:
        - ~/.cache/Cypress
        - ~/.cache/yarn
        - ~/theintercept/integration-tests/node_modules
  - run:
      name: Running E2E tests with JUnit reporter
      command: |
        cd integration-tests
        yarn test:record
  - store_test_results:
      path: integration-tests/test-results
  - store_artifacts:
      path: integration-tests/test-results
  - store_artifacts:
      path: integration-tests/test-artifacts

任何人如果能快速缩进所有这些行而不在每行前面增加两个空格,请随意/