Validate your Python file format with yapf
Project description
pytest-yapf3
Validate your Python file format with yapf.
This is a pytest plugin, which make sure your python file is exactly formatted by yapf,
or it will crash when running pytest
.
Install
pip install pytest-yapf3
Usage
Modify setup.cfg
(or pytest.ini
):
[tool:pytest]
addopts =
--yapf
--yapfdiff
yapf-ignore =
setup.py
src/package/auto_generated/**.py
Add --yapf
to pytest configuration addopts
.
If run with pytest -m yapf
, only yapf
is checked.
By default, only line summaries is displayed.
With an optional --yapfdiff
, a full text of yapf -d
is displayed.
If not configured here, pytest --yapfdiff
will also work.
An optional yapf-ignore
is supported.
Each line specifies a glob pattern of files which should not check yapf
.
The pytest
will cache success results of pytest-yapf3, and will not check again if files not changed.
Sometimes you may want to disable it.
There are 2 ways:
pytest -p no:cacheprovider
This may crash if any other pytest plugin not supports.rm -rf .pytest_cache/v/yapf
This is ugly, but safe for any environment.
Features and Todos
- Basic support to validate
yapf
. - Fix the diff line count error and improve the performance.
- Display
YAPF-check
as the error session name. - Display
YAPF
inpytest --verbose
. - Add
yapf
as a marker to enablepytest -m yapf
. - Support
yapf-ignore
to ignore specified files. - Skip running if a file is not changed.
- 100% test coverage.
Develop
Prepare the environment:
source your/virtual/env
pip install -e .[dev]
Run test:
pytest
Badge
Like black, if your project always pass yapf checking provided by this project, you can use an unofficial badge to show off.
Markdown (README.md)
[![Code style: yapf](https://img.shields.io/badge/code%20style-yapf-blue)](https://github.com/google/yapf)
reStructuredText (README.rst)
.. image:: https://img.shields.io/badge/code%20style-yapf-blue
:target: https://github.com/google/yapf
:alt: Code style: yapf
License
The MIT License (MIT)
Copyright (c) 2019 Yan QiDong
This repository is forked from pytest-yapf in 2019, which is not maintained since 2017. Besides extra features, the project structure is adjusted, and the code is enhanced to pass linters like flake8, pylint and, of course, yapf.
Change Log
Release 0.5.1
- Fix coverage missing lines.
- 100% test coverage.
- Fix a crash when yapf crash.
- Change development status to stable.
Release 0.5.0
- Skip running if a file is not changed.
- Add more usage description in README.
Release 0.4.0
- Add
yapf
as a pytest marker to enablepytest -m yapf
- Support
yapf-ignore
to ignore specified files - Fix a probabilistic issue caused by
\r
Release 0.3.0
- Display
YAPF-check
as the error session name - Display
::YAPF
inpytest --verbose
Release 0.2.0
Since forked from pytest-yapf 0.1.1
, there are some improvements:
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 pytest-yapf3-0.5.1.tar.gz
.
File metadata
- Download URL: pytest-yapf3-0.5.1.tar.gz
- Upload date:
- Size: 11.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 767fe34190eca472e54107c51151a7c722300185e8f16d85ea8de7619f36db5f |
|
MD5 | 2fb7f8d70b9f54424a840158c29901c3 |
|
BLAKE2b-256 | 1626ccbe302d4b9d3118bd6e96c2b699b3d3f5940c66462b6a04baf2bc46b339 |
File details
Details for the file pytest_yapf3-0.5.1-py3-none-any.whl
.
File metadata
- Download URL: pytest_yapf3-0.5.1-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cb9e9e4c861590de3690eaa6d72fe1ae9e7158852613b4b97258cb0981cf3f2 |
|
MD5 | 594b8ff1c3f7b910562c8d8003278c41 |
|
BLAKE2b-256 | 428b6f92dca90368fc34cacfb0c4d9e20e612a15f62047c537a643be2b8c5bdc |