Skip to content

Commit 6c345d2

Browse files
ci: exclude Monitoring from system tests (#2172)
1 parent a9b62a2 commit 6c345d2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/helpers.js

+7-1
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)