We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f460362 commit b51946eCopy full SHA for b51946e
tools/test.py
@@ -317,8 +317,7 @@ def HasRun(self, output):
317
318
class ActionsAnnotationProgressIndicator(DotsProgressIndicator):
319
def AboutToRun(self, case):
320
- if not hasattr(case, 'additional_flags'):
321
- case.additional_flags = []
+ case.additional_flags = case.additional_flags.copy() if hasattr(case, 'additional_flags') else []
322
case.additional_flags.append('--test-reporter=./tools/github_reporter/index.js')
323
case.additional_flags.append('--test-reporter-destination=stdout')
324
0 commit comments