You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A [Buildkite plugin](https://buildkite.com/docs/agent/v3/plugins) that parses junit.xml artifacts (generated across any number of parallel steps) and creates a [build annotation](https://buildkite.com/docs/agent/v3/cli-annotate) listing the individual tests that failed.
3
+
A [Buildkite plugin](https://buildkite.com/docs/agent/v3/plugins) that parses junit.xml from local directories and creates a [build annotation](https://buildkite.com/docs/agent/v3/cli-annotate) listing the individual tests that failed.
4
4
5
5
## Example
6
6
@@ -10,19 +10,16 @@ The following pipeline will run `test.sh` jobs in parallel, and then process all
10
10
steps:
11
11
- command: test.sh
12
12
parallelism: 50
13
-
artifact_paths: tmp/junit-*.xml
14
-
- wait: ~
15
-
continue_on_failure: true
16
-
- plugins:
13
+
plugins:
17
14
- junit-annotate#v2.0.2:
18
-
artifacts: tmp/junit-*.xml
15
+
directory: tmp
19
16
```
20
17
21
18
## Configuration
22
19
23
-
### `artifacts` (required)
20
+
### `directory` (required)
24
21
25
-
The artifact glob path to find the JUnit XML files.
0 commit comments