From f9852687bfe384fd0773fce70d11d2e7b8edcddd Mon Sep 17 00:00:00 2001 From: Stephen Sawchuk Date: Fri, 31 Mar 2017 14:50:07 -0400 Subject: [PATCH] ci: exclude Monitoring from system tests --- scripts/helpers.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/helpers.js b/scripts/helpers.js index e5578d1e33f..ee45392297a 100644 --- a/scripts/helpers.js +++ b/scripts/helpers.js @@ -236,7 +236,13 @@ Module.prototype.runSnippetTests = function() { * Runs system tests for this module via `npm run system-test` */ Module.prototype.runSystemTests = function() { - if (this.name === 'common' || this.name === 'common-grpc') { + var modulesExcludedFromSystemTests = [ + 'common', + 'common-grpc', + 'monitoring' + ]; + + if (modulesExcludedFromSystemTests.indexOf(this.name) > -1) { return; }