This phenomenon can be seen in this (private) build here: https://circleci.com/gh/spidrtech/spidr-platform/10487.
Relevant sections in my .circleci/config.yml
:
- run: rake test
- store_test_results:
path: test/reports
- store_artifacts:
path: test/reports
The build will upload the JUnit XML artifacts, but will not store them as test results, as seen below:
This used to work in the past (a few weeks ago), and it looks like something on the CircleCI side has caused this issue as there were no material changes to our circle config file.