I’m trying to get this feature from the docs to work: https://circleci.com/docs/1.0/parallel-manual-setup/#a-simple-example
I went ahead and put this into my test
section:
override:
- case $CIRCLE_NODE_INDEX in 0) npm run test-server ;; 1) npm run test-ui ;; esac:
parallel: true
I committed and pushed the working branch… the builds that ran, now don’t list the test
section at all.
What am I doing wrong??