Skip to content

Commit f985268

Browse files
ci: exclude Monitoring from system tests
1 parent 7f3e8a7 commit f985268

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/helpers.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,13 @@ Module.prototype.runSnippetTests = function() {
236236
* Runs system tests for this module via `npm run system-test`
237237
*/
238238
Module.prototype.runSystemTests = function() {
239-
if (this.name === 'common' || this.name === 'common-grpc') {
239+
var modulesExcludedFromSystemTests = [
240+
'common',
241+
'common-grpc',
242+
'monitoring'
243+
];
244+
245+
if (modulesExcludedFromSystemTests.indexOf(this.name) > -1) {
240246
return;
241247
}
242248

0 commit comments

Comments
 (0)