Skip to content

Commit 3c104b6

Browse files
committed
chore(travis): update travis script, add trigger saucelabs karma test
relates to ReactiveX#998
1 parent b161058 commit 3c104b6

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

.travis.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ addons:
1010
packages:
1111
- gcc-4.8
1212
- g++-4.8
13+
sauce_connect:
14+
# Update SAUCE_USERNAME / SAUCE_ACCESS_KEY in travis if necessary
15+
# https://docs.travis-ci.com/user/environment-variables/#Defining-Variables-in-Repository-Settings
16+
sauce_connect: true
1317

1418
cache:
1519
directories:
@@ -25,7 +29,10 @@ install:
2529
- npm install && npm run lint
2630

2731
script:
28-
- npm test && node ./node_modules/markdown-doctest/bin/cmd.js && npm run cover && npm run check_circular_dependencies
32+
- npm test && node ./node_modules/markdown-doctest/bin/cmd.js
33+
- npm run check_circular_dependencies
34+
- npm run cover
35+
- cat ./coverage/coverage-remapped.lcov | ./node_modules/coveralls/bin/coveralls.js
2936

30-
after_script:
31-
- cat ./coverage/coverage-remapped.lcov | ./node_modules/coveralls/bin/coveralls.js
37+
after_success:
38+
- npm run test_karma

0 commit comments

Comments
 (0)