File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ version : v1.0
2
+ name : Initial Pipeline
3
+ agent :
4
+ machine :
5
+ type : e1-standard-2
6
+ os_image : ubuntu1804
7
+ blocks :
8
+ - name : Appium tests
9
+ task :
10
+ secrets :
11
+ - name : saucelabs
12
+ prologue :
13
+ commands :
14
+ - checkout
15
+ - npm i
16
+ - cache restore
17
+ jobs :
18
+ - name : Quick tests
19
+ commands :
20
+ - ' npm run test:appium-quick'
21
+ - name : Other Tests
22
+ commands :
23
+ - ' npm run test:appium-other'
Original file line number Diff line number Diff line change 44
44
"test:unit" : " mocha test/unit --recursive" ,
45
45
"test:runner" : " mocha test/runner --recursive" ,
46
46
"test" : " npm run test:unit && npm run test:runner" ,
47
+ "test:appium-quick" : " mocha test/helper/Appium_test.js --grep 'quick'" ,
48
+ "test:appium-other" : " mocha test/helper/Appium_test.js --grep 'second'" ,
47
49
"def" : " ./runio.js def" ,
48
50
"dev:graphql" : " nodemon test/data/graphql/index.js" ,
49
51
"publish:site" : " ./runio.js publish:site" ,
You can’t perform that action at this time.
0 commit comments