Skip to content

Commit 9f1b4cb

Browse files
dpebotJustinBeckwith
authored andcommitted
Update CI config (#105)
1 parent 9cc2d06 commit 9f1b4cb

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/google-cloud-videointelligence/.circleci/npm-install-retry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let spawn = require('child_process').spawn;
66
//USE: ./index.js <ms npm can be idle> <number of attempts> [... NPM ARGS]
77
//
88

9-
let timeout = process.argv[2] || 60000;
9+
let timeout = process.argv[2] || process.env.NPM_INSTALL_TIMEOUT || 60000;
1010
let attempts = process.argv[3] || 3;
1111
let args = process.argv.slice(4);
1212
if (args.length === 0) {

packages/google-cloud-videointelligence/samples/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"node": ">=8"
1010
},
1111
"scripts": {
12-
"ava": "ava -T 20s --verbose test/*.test.js ./system-test/*.test.js",
1312
"cover": "nyc --reporter=lcov --cache ava -T 20s --verbose test/*.test.js ./system-test/*.test.js && nyc report",
1413
"test": "ava -T 5m --verbose system-test/*.test.js"
1514
},

packages/google-cloud-videointelligence/smoke-test/video_intelligence_service_smoke_test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
'use strict';
1616

1717
describe('VideoIntelligenceServiceSmokeTest', () => {
18-
LongRunningOptionalArrayMethod$;
18+
$unhandledCase: LongRunningOptionalArrayMethod$
1919
});

0 commit comments

Comments
 (0)