@ -78,7 +78,7 @@ def GenTests(api):
api . post_process ( post_process . StatusFailure ) +
api . post_process (
post_process . ResultReason ,
( u ' There are 0 error(s), 0 warning(s), and 0 notifications(s).'
( u ' ### There are 0 error(s), 0 warning(s), and 0 notifications(s).'
' Here are the errors: '
' \n \n Timeout occurred during presubmit step. ' ) ) +
api . post_process ( post_process . DropExpectation )
@ -124,21 +124,21 @@ def GenTests(api):
) +
api . post_process ( post_process . StatusFailure ) +
api . post_process ( post_process . ResultReason , textwrap . dedent ( u '''
There are 2 error ( s ) , 1 warning ( s ) , and 1 notifications ( s ) . Here are the errors :
### There are 2 error(s), 1 warning(s), and 1 notifications(s). Here are the errors :
* * ERROR * *
` ` `
Missing LGTM
Here are some suggested OWNERS : fake @
` ` `
* * ERROR * *
` ` `
Syntax error in fake . py
Expected " , " after item in list
` ` `
To see notifications and warnings , look at the stdout of the presubmit step .
##### To see notifications and warnings, look at the stdout of the presubmit step .
''' ).strip()
) +
api . post_process ( post_process . DropExpectation )
@ -166,34 +166,23 @@ def GenTests(api):
) +
api . post_process ( post_process . StatusFailure ) +
api . post_process ( post_process . ResultReason , textwrap . dedent ( '''
There are 1 error ( s ) , 0 warning ( s ) , and 0 notifications ( s ) . Here are the errors :
### There are 1 error(s), 0 warning(s), and 0 notifications(s). Here are the errors :
* * ERROR * *
` ` `
Missing LGTM
Here are some suggested OWNERS :
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
reallyLongFakeAccountNameEmail @chromium.org
* * Error size > 450 chars , there are 1 more error ( s ) ( 13 total ) * *
` ` `
* * Error size > 450 chars , there are 2 more error ( s ) ( 15 total ) * *
* * The complete output can be found at the bottom of the presubmit stdout . * *
''' ).strip()
) +
@ -220,13 +209,14 @@ def GenTests(api):
) +
api . post_process ( post_process . StatusFailure ) +
api . post_process ( post_process . ResultReason , textwrap . dedent ( u '''
There are 1 error ( s ) , 0 warning ( s ) , and 0 notifications ( s ) . Here are the errors :
### There are 1 error(s), 0 warning(s), and 0 notifications(s). Here are the errors :
* * ERROR * *
* * ERROR * *
` ` `
Infra Failure
Infra Failure
''' ).lstrip()
` ` `
''' ).strip()
) +
api . post_process ( post_process . DropExpectation )
)