Skip to content

Commit

Permalink
Temporarily disable result JSON attachment
Browse files Browse the repository at this point in the history
In Mapzen Search production it is hitting a 10MB SQS limit and breaking
our tests!
  • Loading branch information
orangejulius committed Jul 24, 2017
1 parent ffe8098 commit 92917a3
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions output_generators/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,7 @@ function emailResults( suiteResults , config, testSuites ){
from: emailConfig.from || '"pelias-acceptance-tests" <noreply@pelias.mapzen.com>',
to: emailConfig.recipients.join( ', ' ),
subject: getSubject(config),
html: emailHtml,
attachments: [{
filename: 'results.json',
content: JSON.stringify( suiteResults, replace, 4 )
}]
html: emailHtml
};

transporter.sendMail( emailOpts, function( err, info ){
Expand Down

0 comments on commit 92917a3

Please sign in to comment.