Make tests run sequentially

This commit is contained in:
Hamcha 2019-09-12 14:37:34 +02:00
parent 4e2afd4db3
commit 6a863e79b7
Signed by: hamcha
GPG Key ID: 44AD3571EB09A39E
1 changed files with 2 additions and 2 deletions

View File

@ -116,14 +116,14 @@ steps:
- name: test
image: node
commands:
- yarn test:unit
- yarn test:unit --runInBand
depends_on:
- dependencies
- name: coverage
image: node
commands:
- yarn test:unit --coverage
- yarn test:unit --coverage --runInBand
depends_on:
- test # Must run after test otherwise SQLite will get mad