我希望我的集成测试在Circleci上并行运行。 我阅读了这份文档https://circleci.com/blog/how-to-boost-build-time-with-test-parallelism/,然后像这样
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`"
通过查看UI,我看到生成的16个容器中的每一个都执行所有测试。 我想念什么吗?