Commit 4674f8ec authored by Yogev Ben David's avatar Yogev Ben David Committed by GitHub

Merge pull request #352 from wix/parallelism

Parallelise tests
parents df79658e e0dce9fa
version: 2
jobs:
build:
ios_e2e:
macos:
xcode: "10.2.1"
steps:
......@@ -9,18 +9,41 @@ jobs:
- run:
name: Install Dependencies
command: scripts/install.ios.sh
- run:
name: npm install
command: npm install
- run:
name: Detox iOS e2e tests
command: 'npm run test-e2e-ios-release'
android_unit:
macos:
xcode: "10.2.1"
steps:
- checkout
- run:
name: Install Android
command: scripts/install.android.sh
- run:
name: npm install
command: npm install
- run:
name: iOS unit tests
command: 'npm run test-unit-ios'
- run:
name: Android unit tests
command: 'npm run test-unit-android'
ios_unit:
macos:
xcode: "10.2.1"
steps:
- checkout
- run:
name: Detox iOS e2e tests
command: 'npm run test-e2e-ios-release'
\ No newline at end of file
name: npm install
command: npm install
- run:
name: iOS unit tests
command: 'npm run test-unit-ios'
workflows:
version: 2
test_all:
jobs:
- ios_e2e
- android_unit
- ios_unit
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment