File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,8 @@ def run(self):
158
158
notify_email (self .revision , changesets , coverage )
159
159
logger .info ("Sent low coverage email notification" )
160
160
161
- self .check_javascript_files ()
161
+ if secrets .get (secrets .CHECK_JAVASCRIPT_FILES , False ):
162
+ self .check_javascript_files ()
162
163
163
164
# Generate all reports except the full one which we generated earlier.
164
165
all_report_combinations = self .artifactsHandler .get_combinations ()
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ class Secrets(dict):
14
14
PHABRICATOR_URL = "PHABRICATOR_URL"
15
15
PHABRICATOR_TOKEN = "PHABRICATOR_TOKEN"
16
16
GOOGLE_CLOUD_STORAGE = "GOOGLE_CLOUD_STORAGE"
17
+ CHECK_JAVASCRIPT_FILES = "CHECK_JAVASCRIPT_FILES"
17
18
18
19
def load (self , taskcluster_secret = None , local_secrets = None ):
19
20
taskcluster_config .load_secrets (
You can’t perform that action at this time.
0 commit comments