Store_test_results ignores Skipped Tests for junit

I use the Rule method of running my junit tests in parallel on CircleCI. When I store the test results, i get a count that includes tests skipped. For example, with two containers and 100 tests (randomly distributed in 10 test classes), I will get something like

Container 1: Tests Run (56) and Skipped Tests (4)
Container 2: Tests Run (54) and Skipped Tests (6)

Which then reports that 110 tests were run (100 tests + 10 classes that were skipped)

Is there any way to report the actual number of tests run?

1 Like

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.