Junit xml results from pytest are not captured in the project's Insights?

  - run:
      name: Run tests
      working_directory: service
      command: |
        source ../venv/bin/activate
        source postactivate
        pytest --dc=Local --verbose --cov-report html:~/reports/coverage_html --cov=. \
          --junitxml=~/reports/junit.xml

  - store_test_results:
      path: ~/reports

In Insights, I see

Found 8 failed jobs without test metadata. Implement test metadata to view output. Find out more in the test metadata documentation.

How do I get the test details in the Insights page of the project as shown here https://circleci.com/docs/2.0/collect-test-data/ ?

Insights are only for paid projects. If this is one, can you please open a ticket with the build job url so we can take a look? As long as the test metadata is showing in test summary on the job page, it should be showing in insights

Thanks for the reply.

What do you mean by paid projects? We use the hosted CircleCI on the Linux plan. Our github organization is on a paid plan.

It is showing in the test summary.

Your job ran 5 tests in unknown with > 0 failures
Slowest test: test_xxxx (took 0.00 seconds).

Already filed a ticket as you suggested. Thanks.

Thank Hans. Taking a look now to try and figure out why we aren’t grabbing the metadata.