I’m using selenium, testng and surefire plugin to create my reports,
on the post section my circle.yml file looks like this
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
On the test summary tab it only shows the following information
Your build ran 9 tests in junit with 0 failuresSlowest test: Login.LoginTest ExecuteLoginValidCredentialsTest (took 13.23 seconds).
I would like to see the list of executed tests. Am I doing something wrong?