Metadata-Version: 2.1
Name: mypy2junit
Version: 1.7.0
Summary: Script for converting output from MyPy to Junit XML format
Home-page: https://github.com/Dundee/mypy2junit
Author: Daniel Milde
Author-email: daniel@milde.cz
License: BSD-3-Clause
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Provides-Extra: dev

# MyPy2Junit

[![Build Status](https://travis-ci.com/dundee/mypy2junit.svg?branch=master)](https://travis-ci.com/dundee/mypy2junit)

Script for converting output from MyPy to Junit XML format

## Usage

```
mypy somedir | mypy2junit > junit.xml
```

or:

```
mypy > output.txt
mypy2junit output.txt > junit.xml
```

## Installation

```
pip install mypy2junit
```


