From 7f8f4081b983336f44aeb51c635bfc1dd2f29200 Mon Sep 17 00:00:00 2001 From: yogevbd Date: Mon, 29 Jul 2019 17:44:04 +0300 Subject: [PATCH] Enable parallelised tests --- .circleci/config.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ba583e6..a4aa95d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,7 @@ jobs: test: macos: xcode: "10.2.1" + parallelism: 3 steps: - run: name: iOS unit tests @@ -27,4 +28,11 @@ jobs: command: 'npm run test-unit-android' - run: name: Detox iOS CI - command: 'npm run test-e2e-ios-release' \ No newline at end of file + command: 'npm run test-e2e-ios-release' + +workflows: + version: 1 + build_and_test: + jobs: + - build + - test \ No newline at end of file -- 2.26.2