| Crates.io | merge-junit |
| lib.rs | merge-junit |
| version | 0.2.1 |
| created_at | 2022-08-08 18:51:49.386047+00 |
| updated_at | 2024-07-06 14:41:48.476026+00 |
| description | CLI utility to merge JUnit compliant XML documents into a single XML document. |
| homepage | https://github.com/tobni/merge-junit |
| repository | https://github.com/tobni/merge-junit |
| max_upload_size | |
| id | 640988 |
| size | 66,890 |
Merging JUnit XML files.
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
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
$ git clone https://github.com/tobni/merge-junit
$ cd merge-junit
$ cargo test