File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,11 @@ Default: `0`
62
62
63
63
Include the specified number of slowest tests in the annotation. The annotation will always be shown.
64
64
65
+ # ## `verbose` (optional)
66
+ Default : ` false`
67
+
68
+ Run in verbose mode.
69
+
65
70
# # Developing
66
71
67
72
To test the plugin hooks (in Bash) and the junit parser (in Ruby) :
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
set -euo pipefail
4
+ if [[ " ${BUILDKITE_PLUGIN_JUNIT_ANNOTATE_LOCAL_VERBOSE:- false} " =~ (true| on| 1) ]]; then
5
+ echo " Will run verbose mode"
6
+ set -x
7
+ fi
8
+
4
9
5
10
PLUGIN_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) /.."
6
11
MAX_SIZE=1024 # in KB
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ configuration:
24
24
type : integer
25
25
append :
26
26
type : boolean
27
+ verbose :
28
+ type : boolean
27
29
required :
28
30
- directory
29
31
additionalProperties : false
You can’t perform that action at this time.
0 commit comments