We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9dc372 commit f14cc71Copy full SHA for f14cc71
karma.conf.js
@@ -97,7 +97,7 @@ module.exports = function(config) {
97
},
98
sauceLabs: {
99
testName: 'AngularDart',
100
- tunnelIdentifier: process.env.TRAVIS_JOB_NUMBER,
+ tunnelIdentifier: env.TRAVIS_JOB_NUMBER,
101
startConnect: false,
102
options: {
103
'selenium-version': '2.41.0',
scripts/travis/build.sh
@@ -128,7 +128,7 @@ _run_karma_tests() {(
128
129
# Run sharded karma tests.
130
export NUM_KARMA_SHARDS=4
131
- echo {0..3} | xargs -d ' ' -n 1 -P $NUM_KARMA_SHARDS -I SHARD_ID \
+ seq 0 $((NUM_KARMA_SHARDS-1)) | xargs -n 1 -P $NUM_KARMA_SHARDS -I SHARD_ID \
132
bash -c '_run_once SHARD_ID'
133
else
134
_run_once
0 commit comments