Metadata-Version: 2.1
Name: dbt-junitxml
Version: 0.1.3
Summary: 
Home-page: https://github.com/chasleslr/dbt-junitxml
License: MIT
Author: Charles Lariviere
Author-email: charleslariviere1@gmail.com
Requires-Python: >=3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: click (>=8.1)
Requires-Dist: junit-xml (>=1.9)
Project-URL: Repository, https://github.com/chasleslr/dbt-junitxml
Description-Content-Type: text/markdown

# dbt-junitxml

Convert your dbt test results into jUnit XML format so that CI/CD platforms (such as Jenkins, CircleCI, etc.)
can better report on tests in their UI.

## Installation

```shell
pip install dbt-junitxml
```


## Usage

When you run your dbt test suite, the output is saved under `target/run_results.json`. Run the following command
to parse your run results and output a jUnit XML formatted report.

```shell
dbt-junitxml target/run_results.json report.xml
```

## Limitations

Currently, only v4 of the [Run Results](https://docs.getdbt.com/reference/artifacts/run-results-json) specifications is supported.

