#junit #xml-document #xml #report #command-line-tool

app merge-junit

CLI utility to merge JUnit compliant XML documents into a single XML document

5 releases

0.2.1 Jul 6, 2024
0.1.4 Aug 9, 2022
0.1.3 Aug 9, 2022
0.1.1 Aug 8, 2022
0.1.0 Aug 8, 2022

#420 in Command line utilities

Download history 1330/week @ 2024-10-14 526/week @ 2024-10-21 3404/week @ 2024-10-28 1225/week @ 2024-11-04 2537/week @ 2024-11-11 2446/week @ 2024-11-18 612/week @ 2024-11-25 1633/week @ 2024-12-02 3536/week @ 2024-12-09 700/week @ 2024-12-16 690/week @ 2024-12-30 1970/week @ 2025-01-06 2082/week @ 2025-01-13 520/week @ 2025-01-20 1658/week @ 2025-01-27

6,230 downloads per month

Unlicense

27KB
685 lines

merge-junit

Merging JUnit XML files.

Installation

Via npm:

$ npm i merge-junit
$ npx merge-junit --version
merge-junit 0.2.1

Downloading binaries (e.g Linux):

$ curl -L https://github.com/tobni/merge-junit/releases/download/v0.2.1/merge-junit-v0.2.1-x86_64-unknown-linux-musl.tar.gz | tar -xz
$ ./merge-junit-v0.2.1-x86_64-unknown-linux-musl/merge-junit --version
merge-junit 0.2.1

From source:

$ git clone https://github.com/tobni/merge-junit
$ cd merge-junit
$ cargo build --release
$ ./target/release/merge-junit --version
merge-junit 0.2.1

Usage example

Some test runners run in parallel and produce many small JUnit reports. Stitching them together to feed a GUI / reporting application can increase readability.

$ merge-junit *.xml -o merged-tests.xml

Development setup

Uses rustfmt and clippy.

$ git clone https://github.com/tobni/merge-junit
$ cd merge-junit
$ cargo test

Dependencies

~2.5MB
~38K SLoC