forked from appium-boneyard/appium-ios-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
30 lines (30 loc) · 797 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
env:
global:
- MOCHA_INIT_TIMEOUT=600000
- RECURSIVE=--recursive
matrix:
# Run tests in parellel
- DEVICE=ios93 TEST=unit RECURSIVE= COVERALLS=1
- DEVICE=ios93 TEST=e2e/driver IWDP=1
- DEVICE=ios93 TEST=e2e/testapp
- DEVICE=ios93 TEST=e2e/uicatalog
- DEVICE=ios93 TEST=e2e/safari
language: node_js
os: osx
osx_image: xcode7.3
node_js: "10"
before_install:
# Instruments fix:
# https://github.com/travis-ci/travis-ci/issues/4218
- ./bin/instruments-auth.sh
- if [ -n "$IWDP" ]; then
brew update;
brew install ios-webkit-debug-proxy --HEAD;
fi
before_script:
- npm install
script:
- npm run lint
- npm run mocha -- $RECURSIVE build/test/$TEST -g @skip-ci -i --exit;
after_success:
- if [ -n "$COVERALLS" ]; then npm run coverage; fi