Skip to content

Commit 508b9ac

Browse files
committed
fix: remove parallel for small tests
1 parent 696c638 commit 508b9ac

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ windows_big: &windows_big
4444
# we've pinned the version because without it, it uses "current" (at the time of writing, "2023.06.1"),
4545
# which has a broken Docker installation. See https://discuss.circleci.com/t/build-failures-when-running-docker-on-junes-windows-executor/48605
4646
# TODO: check if it works again with the next release and unpin the version.
47-
version: 2023.05.1
47+
version: "2023.05.1"
4848
parameters:
4949
node_version:
5050
type: string
@@ -170,18 +170,13 @@ jobs:
170170
- dist/
171171
test:
172172
<<: *defaults
173-
parallelism: 4 # Run tests across 4 containers
174173
steps:
175174
- checkout_with_cache
176175
- setup_remote_docker:
177176
docker_layer_caching: true
178177
- attach_workspace:
179178
at: ~/snyk-docker-plugin
180-
- run:
181-
name: Run tests in parallel
182-
command: |
183-
TEST=$(npx jest --listTests | circleci tests split --split-by=timings)
184-
npm run test-jest -- $TEST >> test-logs.txt 2>&1
179+
- run: npm run test-jest > test-logs.txt 2>&1
185180
- store_artifacts:
186181
path: test-logs.txt
187182
destination: test-logs

0 commit comments

Comments
 (0)