From 709ad4ccb8a3480fbfb687492063e169edac5979 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Tue, 11 Feb 2020 17:22:15 +0100 Subject: [PATCH] Do not run tests in parallel They occasionally fail if we run them in parallel - not sure why. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6933eb34..cd212b1d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ jobs: - checkout - run: name: Test - command: flutter test + command: flutter test -j 1 - run: name: Analyze command: flutter analyze