Standalone tool to convert a mypy output to CodeQuality JSON, for Gitlab or other CIs.
Project description
mypy-code-climate
Standalone tool to convert Mypy output to Code Climate format. It does not require the Code Climate CLI and is dependency-free: great for CI/CD. Keeps sane exit codes for your CI. Additionally, can be used as a Python library.
Why Code Climate
The Code Climate format is supported by Gitlab CI, so you can generate a Code Quality report from mypy output, and have it tracked and displayed in your Gitlab UI.
Usage
mypy-to-codeclimate <mypy_output_file> <code_climate_output_file>
Example:
mypy-to-codeclimate mypy-output.txt mypy-codequality.json
You can replace the filename by -
to read from stdin, write to stdout, or both.
mypy <command_args> | mypy-to-codeclimate - mypy-codequality.json
Return codes
0
: Success, no mypy errors1
: Mypy errors, codeclimate report generated2
: Mypy crash (unexpected error) or mypy-to-codeclimate error (invalid arguments, invalid input file, etc.)
Options
--version
: Print version and exit--help
: Print help and exit
Installation
pip install mypy-to-codeclimate
The package is distributed on Pypi, so you can install it with pipx, PDM, Poetry or any other Python package manager.
Supported versions
Mypy versions
Tested against Mypy 1.6.1. It should work with any version of mypy that outputs the same format.
Please open an issue if you find a version of mypy that is not supported.
Example usage in Gitlab CI
Example of a job that runs mypy and generates a codeclimate report, on a Linux runner.
Dependency management is left as an exercise for the reader.
See Gitlab CI code-quality artifacts reference
lint_python_mypy:
script:
- mypy --version
# Disable exit on error and pipefail:
# mypy-code-climate will return a non-zero exit code if there are errors but we want to continue the job to generate the report
- set +eo pipefail
- mypy <command_args> | tee mypy-output.txt"
# Enable exit on error again
- set -xeo
- mypy-to-codeclimate mypy-output.txt mypy-codequality.json
artifacts:
when: always
paths:
- mypy-codequality.json
reports:
codequality: mypy-codequality.json
License
MIT, see LICENSE file.
Acknowledgements
Inspired by codeclimate-mypy by Scott Larkin (@larkinscott).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mypy_to_codeclimate-0.0.3.tar.gz
.
File metadata
- Download URL: mypy_to_codeclimate-0.0.3.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.10.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8447deac1d60e104bfb1233ea87cb6d9120a13c0082332c34585ff00036f85e |
|
MD5 | a3c73861bcd894de90ee3ba09d00caaf |
|
BLAKE2b-256 | 0f0d17654bac6696021ea78b2c083bd7736a20fdc3d0f47a1d8a2def4e36f1b0 |
File details
Details for the file mypy_to_codeclimate-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: mypy_to_codeclimate-0.0.3-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: pdm/2.10.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6366cb48c816d95b54021218123080f5216c31d37322285256597a752cb40379 |
|
MD5 | 1d3b105f0911a9b733ee5e35ab0d3dea |
|
BLAKE2b-256 | 353bee8335d853b68ec3b56df80c857e09eb4bc6d4206dba62aaac77610006f8 |