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?