From 6a863e79b777b8df399b93ca1a8d613ecf85ad90 Mon Sep 17 00:00:00 2001 From: Hamcha Date: Thu, 12 Sep 2019 14:37:34 +0200 Subject: [PATCH] Make tests run sequentially --- .drone.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 13ee39a..5a02eee 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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