Disable file parallelism for dev tests

This commit is contained in:
Konstantin Wohlwend 2025-03-18 13:13:52 -07:00
parent e7104dcb52
commit 79668811db
2 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ env:
SHELL: /usr/bin/bash
jobs:
test:
restart-dev-and-test:
runs-on: ubicloud-standard-8
steps:
- uses: actions/checkout@v3
@ -37,7 +37,7 @@ jobs:
run: pnpm run restart-dev-environment
- name: Run tests
run: pnpm test
run: pnpm test --no-file-parallelism
- name: Print dev server logs
run: cat dev-server.log.untracked.txt

View File

@ -15,7 +15,7 @@ env:
SHELL: /usr/bin/bash
jobs:
test:
setup-tests:
runs-on: ubicloud-standard-8
steps:
- uses: actions/checkout@v3
@ -45,5 +45,5 @@ jobs:
tail: true
wait-for: 120s
log-output-if: true
- run: pnpm test
- run: pnpm test --no-file-parallelism