Skip to content

Commit 383368e

Browse files
committed
Ensure tests run sequentially
Ent is not threadsafe
1 parent 7826048 commit 383368e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ jobs:
3636
3737
- name: Run tests
3838
run: |
39-
(cd backend && go test ./...)
40-
(cd frontend/cli && go test ./...)
39+
(cd backend && go test -p=1 ./...)
40+
(cd frontend/cli && go test -p=1 ./...)
4141
(cd shared && go test ./...)
4242
(cd api/go && go test ./...)
4343
env:

0 commit comments

Comments
 (0)