Integrate mypy with existing codebase.
Project description
mypy-baseline
A CLI tool for painless integration of mypy with an existing Python project. When you run it for the first time, it will remember all type errors that you already have in the project (generate "baseline"). All consequentive runs will ignore these errors and report only ones that you introduced after that.
Additionally, the tool will show you what progress you made since the last baseline, to encourage your team to resolve mypy errors:
Features:
- Battle-tested.
- Fast and simple.
- Pure Python.
- No mypy patching or dirty magic. The tool works exclusively with the stdout of mypy.
- Nice stats with colors.
- Can detect exactly what errors were introduced and what errors were resolved, even if they are in the same file.
- Baseline is carefully crafted to avoid merge conflicts.
- Baseline is human-readable, and diffs are informative. The reviewers of your PR will know exactly what errors you resolve and what errors you introduced.
- Track the progress you make with git-based history of changes and burndown chart of resolved type violations.
- Ignore speicific error messages (using regular expressions), so that buggy mypy plugins don't bother you with false-positives.
Installation
python3 -m pip install mypy-baseline
Usage
Create the baseline (it will be stored in mypy-baseline.txt
by default):
mypy | mypy-baseline sync
After that, you can pipe mypy output into mypy-baseline filter
, and it will filter out all issues that are already in the baseline:
mypy | mypy-baseline filter
If you introduce new errors, resolve them. If you resolve existing errors, run mypy-baseline sync
again to re-generate baseline. In both cases, mypy-baseline will tell you what's wrong and what to do. Enjoy the ride!
Read more in the documentation: mypy-baseline.orsinium.dev
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_baseline-0.5.0.tar.gz
.
File metadata
- Download URL: mypy_baseline-0.5.0.tar.gz
- Upload date:
- Size: 318.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18a7b1976f61ad66f58e3b86b954817702d5c2a67a46465f30c1f0fdcc4d5d92 |
|
MD5 | b0b57761570e2bf1eef46cd91279c451 |
|
BLAKE2b-256 | d03eeb3c0d17981073408bf3a2dbf939034f08628de2b0811a1082d8200ae5c0 |
File details
Details for the file mypy_baseline-0.5.0-py3-none-any.whl
.
File metadata
- Download URL: mypy_baseline-0.5.0-py3-none-any.whl
- Upload date:
- Size: 17.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 687b24df01f61d7101ddc6debb51424eb87ca306313e8951b6003eb78c3d8828 |
|
MD5 | 85d4082c4d5d4bbea20f58091f42dc32 |
|
BLAKE2b-256 | 8720d8f5bd2fae45194e6c8977dda12dede7f7bcf6258bb44c6dea1a90fcf45a |