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

View file

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