Python Formatters, Linters, and Testers Runner.
Project description
pyfltr: Python Formatters, Linters, and Testers Runner
Pythonの各種ツールをまとめて呼び出すツール。
- Formatters
- pyupgrade
- autoflake
- isort
- black
- Linters
- pflake8 + flake8-bugbear
- mypy
- pylint
- Testers
- pytest
コンセプト
- 各種ツールをまとめて呼び出したい
- 各種ツールのバージョンにはできるだけ依存したくない (ので設定とかは面倒見ない)
- exclude周りは各種ツールで設定方法がバラバラなのでできるだけまとめて解消したい (のでpyfltr側で解決してツールに渡す)
- blackやisortはファイルを修正しつつエラーにもしたい (CIとかを想定) (pyupgradeはもともとそういう動作)
- Q: pysenでいいのでは? A: それはそう
インストール
pip install pyfltr
主な使い方
通常
pyfltr [files and/or directories ...]
対象を指定しなければカレントディレクトリを指定したのと同じ扱い。
指定したファイルやディレクトリの配下のうち、pytest以外は*.py
のみ、pytestは*_test.py
のみに対して実行される。
終了コード:
- 0: Formattersによるファイル変更無し、かつLinters/Testersでのエラー無し
- 1: 上記以外
--exit-zero-even-if-formated
を指定すると、Formattersによるファイル変更があっても
Linters/Testersでのエラー無しなら終了コードは0になる。
特定のツールのみ実行
pyfltr --commands=pyupgrade,autoflake,isort,black,pflake8,mypy,pylint,pytest [files and/or directories ...]
カンマ区切りで実行するツールだけ指定する。
以下のエイリアスも使用可能。(例: --commands=fast
)
format
:pyupgrade
,autoflake
,isort
,black
lint
:pflake8
,mypy
,pylint
test
:pytest
fast
:pyupgrade
,autoflake
,isort
,black
,pflake8
設定
pyproject.toml
で設定する。
例
[tool.pyfltr]
pyupgrade-args = ["--py38-plus"]
pylint-args = ["--jobs=4"]
extend-exclude = ["foo", "bar.py"]
設定項目
設定項目と既定値はpyfltr --generate-config
で確認可能。
- {command} : コマンドの有効/無効
- {command}-path : 実行するコマンド
- {command}-args : 追加のコマンドライン引数
- exclude : 除外するファイル名/ディレクトリ名パターン(既定値あり)
- extend-exclude : 追加で除外するファイル名/ディレクトリ名パターン(既定値は空)
各種設定例
pyproject.toml
[tool.poetry.dev-dependencies]
pyfltr = "*"
[tool.pyfltr]
pyupgrade-args = ["--py38-plus"]
pylint-args = ["--jobs=4"]
[tool.isort]
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#isort
# https://pycqa.github.io/isort/docs/configuration/options.html
profile = "black"
[tool.black]
# https://black.readthedocs.io/en/stable/usage_and_configuration/the_basics.html
target-version = ['py38']
skip-magic-trailing-comma = true
[tool.flake8]
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
# https://flake8.pycqa.org/en/latest/user/configuration.html
max-line-length = 88
extend-ignore = "E203,"
[tool.mypy]
# https://mypy.readthedocs.io/en/stable/config_file.html
allow_redefinition = true
check_untyped_defs = true
ignore_missing_imports = true
strict_optional = true
strict_equality = true
warn_no_return = true
warn_redundant_casts = true
warn_unused_configs = true
show_error_codes = true
[tool.pytest.ini_options]
# https://docs.pytest.org/en/latest/reference/reference.html#ini-options-ref
addopts = "--showlocals -p no:cacheprovider"
.pre-commit-config.yaml
- repo: local
hooks:
- id: system
name: pyfltr
entry: poetry run pyfltr --commands=fast
types: [python]
require_serial: true
language: system
CI
- poetry install --no-interaction
- poetry run pyfltr
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
pyfltr-1.6.0.tar.gz
(7.8 kB
view details)
Built Distribution
File details
Details for the file pyfltr-1.6.0.tar.gz
.
File metadata
- Download URL: pyfltr-1.6.0.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.2 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ff087795e41958353dc2e301cd21484fc8527a58eca9bc262ed68682630611e |
|
MD5 | a553ea7663b55c9f24e988676d16acae |
|
BLAKE2b-256 | d448ace383a7334437eef3280a00263d14fd31a23948bcc620a6b6d650c9c4e2 |
File details
Details for the file pyfltr-1.6.0-py3-none-any.whl
.
File metadata
- Download URL: pyfltr-1.6.0-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.12.2 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6e11a3929b61de2505c2502fdcdb520097b038a8d56b2f1c002110c75dbd5a7 |
|
MD5 | f463f2adf8efad45d7287fdcfecdabff |
|
BLAKE2b-256 | db76366141aaa15d3a85e13cc711d5607f89495509a5853d32976ec1aa65f43c |