-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (34 loc) · 1.13 KB
/
.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
31
32
33
34
sudo: required
env:
- _FORCE_LOGS=1 PLATFORM_VERSION=9.3 TEST=unit
- _FORCE_LOGS=1 PLATFORM_VERSION=9.3 TEST=functional/basic
- _FORCE_LOGS=1 PLATFORM_VERSION=9.3 TEST=functional/driver
- _FORCE_LOGS=1 PLATFORM_VERSION=9.3 TEST=functional/web
- _FORCE_LOGS=1 PLATFORM_VERSION=9.3 TEST=functional/long
language:
- objective-c
os: osx
osx_image: xcode8.2
git: # Handle git submodules yourself
submodules: false
node_js:
- "7"
- "6"
- "4"
before_install:
# Use sed to replace the SSH URL with the public URL, then initialize submodules
# code from http://stackoverflow.com/a/24600210/375688
- sed -i '' 's/[email protected]:/https:\/\/github.com\//' /Users/travis/build/appium/appium-xcuitest-driver/.gitmodules
- git submodule update --init --recursive
- pushd WebDriverAgent && ./Scripts/bootstrap.sh -d && popd
- brew install ios-webkit-debug-proxy
before_script:
- node --version
- npm install
- npm install -g gulp
- npm install -g mocha
- node --version # just print out the node version, so we know for sure
- gulp transpile
script:
- gulp eslint
- mocha -t 480000 --recursive build/test/$TEST -g @skip-ci -i