- 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/ ?