I want my integration tests to run in parallel on Circleci. I read this document https://circleci.com/blog/how-to-boost-build-time-with-test-parallelism/ and I setup my job like this
platform_component_test:
  working_directory: *workspace_root
  executor: ubuntu-machine
  parallelism: 16
  steps:
    - prepare_workspace
    - run:
        name: 'Run Platform Component tests'
        command:
          ./gradlew platform:componentTest -PtestFilter="`circleci tests glob "platform/src/componentTest/java/**/*.java"|circleci tests split`"
By looking at the UI, I see that each of the 16 containers that are spawn execute all the tests. Am I missing something?
 
    