flake8-pytest-style


Nameflake8-pytest-style JSON
Version 2.0.0 PyPI version JSON
download
home_pagehttps://pypi.org/project/flake8-pytest-style
SummaryA flake8 plugin checking common style issues or inconsistencies with pytest-based tests.
upload_time2024-04-01 17:16:01
maintainerNone
docs_urlNone
authorMikhail Burshteyn
requires_python<4.0.0,>=3.8.1
licenseMIT
keywords flake8 pytest
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # flake8-pytest-style

[![pypi](https://badge.fury.io/py/flake8-pytest-style.svg)](https://pypi.org/project/flake8-pytest-style)
[![Python: 3.7+](https://img.shields.io/badge/Python-3.7+-blue.svg)](https://pypi.org/project/flake8-pytest-style)
[![Downloads](https://img.shields.io/pypi/dm/flake8-pytest-style.svg)](https://pypistats.org/packages/flake8-pytest-style)
[![Build Status](https://github.com/m-burst/flake8-pytest-style/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/m-burst/flake8-pytest-style/actions/workflows/ci.yml)
[![Code coverage](https://codecov.io/gh/m-burst/flake8-pytest-style/branch/master/graph/badge.svg)](https://codecov.io/gh/m-burst/flake8-pytest-style)
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://en.wikipedia.org/wiki/MIT_License)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)

## Description

A `flake8` plugin checking common style issues or inconsistencies with `pytest`-based tests.

Currently the following errors are reported:

| Code    | Description |
| ------- | ----------- |
| [PT001] | use @pytest.fixture() over @pytest.fixture <br> (configurable by `pytest-fixture-no-parentheses`) |
| [PT002] | configuration for fixture '{name}' specified via positional args, use kwargs |
| [PT003] | scope='function' is implied in @pytest.fixture() |
| [PT004] | fixture '{name}' does not return anything, add leading underscore |
| [PT005] | fixture '{name}' returns a value, remove leading underscore |
| [PT006] | wrong name(s) type in @pytest.mark.parametrize, expected {expected_type} <br> (configurable by `pytest-parametrize-names-type`) |
| [PT007] | wrong values type in @pytest.mark.parametrize, expected {expected_type} <br> (configurable by `pytest-parametrize-values-type` and `pytest-parametrize-values-row-type`) |
| [PT008] | use return_value= instead of patching with lambda |
| [PT009] | use a regular assert instead of unittest-style '{assertion}' |
| [PT010] | set the expected exception in pytest.raises() |
| [PT011] | pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception <br> (configurable by `pytest-raises-require-match-for`) |
| [PT012] | pytest.raises() block should contain a single simple statement |
| [PT013] | found incorrect import of pytest, use simple 'import pytest' instead |
| [PT014] | found duplicate test cases {indexes} in @pytest.mark.parametrize |
| [PT015] | assertion always fails, replace with pytest.fail() |
| [PT016] | no message passed to pytest.fail() |
| [PT017] | found assertion on exception {name} in except block, use pytest.raises() instead |
| [PT018] | assertion should be broken down into multiple parts |
| [PT019] | fixture {name} without value is injected as parameter, use @pytest.mark.usefixtures instead |
| [PT020] | @pytest.yield_fixture is deprecated, use @pytest.fixture |
| [PT021] | use yield instead of request.addfinalizer |
| [PT022] | no teardown in fixture {name}, use return instead of yield |
| [PT023] | use @pytest.mark.foo() over @pytest.mark.foo <br> (configurable by `pytest-mark-no-parentheses`) |
| [PT024] | pytest.mark.asyncio is unnecessary for fixtures |
| [PT025] | pytest.mark.usefixtures has no effect on fixtures |
| [PT026] | useless pytest.mark.usefixtures without parameters | 
| [PT027] | use pytest.raises() instead of unittest-style '{assertion}' |

## Installation

    pip install flake8-pytest-style

## Configuration

The plugin has the following configuration options:

* `pytest-fixture-no-parentheses` &mdash; see [PT001]
* `pytest-parametrize-names-type` &mdash; see [PT006]
* `pytest-parametrize-values-type` &mdash; see [PT007]
* `pytest-parametrize-values-row-type` &mdash; see [PT007]
* `pytest-raises-require-match-for` &mdash; see [PT011]
* `pytest-mark-no-parentheses` &mdash; see [PT023]

## For developers

### Install deps and setup pre-commit hook

    make init

### Run linters, autoformat, tests etc.

    make format lint test

### Bump new version

    make bump_major
    make bump_minor
    make bump_patch

## License

MIT

## Change Log

**Unreleased**

...

**2.0.0 - 2024-04-01**

* **BREAKING:** invert default values for `pytest-fixture-no-parentheses` and `pytest-mark-no-parentheses`
  to conform with `pytest` official style
  * If you get a lot of [PT001] or [PT023] violations after upgrading, consider setting explicit values
    for these configuration options
* require at least Python 3.8.1
* support Python 3.12

**1.7.2 - 2023-02-15**

* fix false positive for [PT009] on `pytest.fail`

**1.7.1 - 2023-02-15**

* update list of unittest-style assert methods for [PT009]/[PT027]

**1.7.0 - 2023-02-09**

* require at least Python 3.7.2
* support Python 3.11
* add [PT027] (checks for unittest-style `assertRaises`)

**1.6.0 - 2021-12-23**

* require at least Python 3.6.2
* expose `py.typed` file

**1.5.1 - 2021-11-05**

* better wording for [PT011]
* support Python 3.10

**1.5.0 - 2021-06-18**

* add [PT025] (checks for erroneous `pytest.mark.usefixtures` on fixtures)
* add [PT026] (checks for `pytest.mark.usefixtures` without parameters)

**1.4.4 - 2021-06-17**

* fix [PT023] not checking marks in classes
* fix [PT004] incorrectly firing on fixtures with `yield from`

**1.4.2 - 2021-05-24**

* update `flake8-plugin-utils` version to improve stability

**1.4.1 - 2021-04-01**

* fix argparse-related warnings

**1.4.0 - 2021-03-14**

* add [PT023] (checks for parentheses consistency in `pytest.mark` usage)
* add [PT024] (checks for unnecessary `pytest.mark.asyncio` on fixtures)
* fix [PT004], [PT005] firing on abstract fixtures
* fix [PT012] firing on `with` statements containing a single `pass`

**1.3.0 - 2020-08-30**

* add [PT022] (checks for `yield` fixtures without teardown)

**1.2.3 - 2020-08-06**

* update `flake8-plugin-utils` dependency to fix encoding problems on Windows

**1.2.2 - 2020-07-23**

* fix [PT004]/[PT005] inspecting returns of nested functions

**1.2.1 - 2020-06-15**

* fix [PT021] for factory fixtures (#46)

**1.2.0 - 2020-06-12**

* support scoped `mocker` fixtures from `pytest-mock` for [PT008]
* check for positional-only lambda arguments in [PT008]
* add [PT020] (checks for `pytest.yield_fixture`)
* add [PT021] (checks for `request.addfinalizer`)
* add documentation pages for all rules

**1.1.1 - 2020-04-17**

* fix [PT011] not reporting `match=''` as a violation

**1.1.0 - 2020-04-14**

* add [PT015] (checks for `assert False`)
* add [PT016] (checks for `pytest.fail()` without message)
* add [PT017] (checks for assertions on exceptions in `except` blocks)
* add [PT018] (checks for composite assertions)
* add [PT019] (checks for fixtures without value injected as parameters)

**1.0.0 - 2020-03-26**

* add [PT014] (checks for duplicate test cases in `@pytest.mark.parametrize`)

**0.6.0 - 2020-03-21**

* add configuration option `pytest-parametrize-names-type` for [PT006]
* add configuration options `pytest-parametrize-values-type` and
`pytest-parametrize-values-row-type` for [PT007]

**0.5.0 - 2020-03-09**

* add configuration option `pytest-fixture-no-parentheses` for [PT001]
* add [PT013] (checks for `from`-imports from `pytest`)

**0.4.0 - 2020-03-09**

* add [PT012] (checks for multiple statements in `with pytest.raises()`)

**0.3.1 - 2020-03-09**

* fix default value of `pytest-raises-require-match-for` config option

**0.3.0 - 2020-03-09**

* add [PT010] and [PT011] (checks for `pytest.raises` parameters)

**0.2.0 - 2020-03-01**

* add [PT009] (ported from [flake8-pytest](https://github.com/vikingco/flake8-pytest))

**0.1.3 - 2019-05-24**

* add `yield` fixtures support
* fix changelog entry for 0.1.2

**0.1.2 - 2019-05-23**

* fix parametrize checkers not working in decorators

**0.1.1 - 2019-05-23**

* update PyPI description

**0.1.0 - 2019-05-23**

* initial

[PT001]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT001.md
[PT002]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT002.md
[PT003]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT003.md
[PT004]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT004.md
[PT005]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT005.md
[PT006]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT006.md
[PT007]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT007.md
[PT008]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT008.md
[PT009]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT009.md
[PT010]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT010.md
[PT011]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT011.md
[PT012]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT012.md
[PT013]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT013.md
[PT014]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT014.md
[PT015]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT015.md
[PT016]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT016.md
[PT017]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT017.md
[PT018]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT018.md
[PT019]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT019.md
[PT020]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT020.md
[PT021]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT021.md
[PT022]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT022.md
[PT023]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT023.md
[PT024]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT024.md
[PT025]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT025.md
[PT026]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT026.md
[PT027]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT027.md

            

Raw data

            {
    "_id": null,
    "home_page": "https://pypi.org/project/flake8-pytest-style",
    "name": "flake8-pytest-style",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0.0,>=3.8.1",
    "maintainer_email": null,
    "keywords": "flake8, pytest",
    "author": "Mikhail Burshteyn",
    "author_email": "mdburshteyn@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/51/31/5bb7e30878e8a1783930681767cae29a2304d9006548ab4ad905c121ff88/flake8_pytest_style-2.0.0.tar.gz",
    "platform": null,
    "description": "# flake8-pytest-style\n\n[![pypi](https://badge.fury.io/py/flake8-pytest-style.svg)](https://pypi.org/project/flake8-pytest-style)\n[![Python: 3.7+](https://img.shields.io/badge/Python-3.7+-blue.svg)](https://pypi.org/project/flake8-pytest-style)\n[![Downloads](https://img.shields.io/pypi/dm/flake8-pytest-style.svg)](https://pypistats.org/packages/flake8-pytest-style)\n[![Build Status](https://github.com/m-burst/flake8-pytest-style/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/m-burst/flake8-pytest-style/actions/workflows/ci.yml)\n[![Code coverage](https://codecov.io/gh/m-burst/flake8-pytest-style/branch/master/graph/badge.svg)](https://codecov.io/gh/m-burst/flake8-pytest-style)\n[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://en.wikipedia.org/wiki/MIT_License)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/ambv/black)\n\n## Description\n\nA `flake8` plugin checking common style issues or inconsistencies with `pytest`-based tests.\n\nCurrently the following errors are reported:\n\n| Code    | Description |\n| ------- | ----------- |\n| [PT001] | use @pytest.fixture() over @pytest.fixture <br> (configurable by `pytest-fixture-no-parentheses`) |\n| [PT002] | configuration for fixture '{name}' specified via positional args, use kwargs |\n| [PT003] | scope='function' is implied in @pytest.fixture() |\n| [PT004] | fixture '{name}' does not return anything, add leading underscore |\n| [PT005] | fixture '{name}' returns a value, remove leading underscore |\n| [PT006] | wrong name(s) type in @pytest.mark.parametrize, expected {expected_type} <br> (configurable by `pytest-parametrize-names-type`) |\n| [PT007] | wrong values type in @pytest.mark.parametrize, expected {expected_type} <br> (configurable by `pytest-parametrize-values-type` and `pytest-parametrize-values-row-type`) |\n| [PT008] | use return_value= instead of patching with lambda |\n| [PT009] | use a regular assert instead of unittest-style '{assertion}' |\n| [PT010] | set the expected exception in pytest.raises() |\n| [PT011] | pytest.raises({exception}) is too broad, set the match parameter or use a more specific exception <br> (configurable by `pytest-raises-require-match-for`) |\n| [PT012] | pytest.raises() block should contain a single simple statement |\n| [PT013] | found incorrect import of pytest, use simple 'import pytest' instead |\n| [PT014] | found duplicate test cases {indexes} in @pytest.mark.parametrize |\n| [PT015] | assertion always fails, replace with pytest.fail() |\n| [PT016] | no message passed to pytest.fail() |\n| [PT017] | found assertion on exception {name} in except block, use pytest.raises() instead |\n| [PT018] | assertion should be broken down into multiple parts |\n| [PT019] | fixture {name} without value is injected as parameter, use @pytest.mark.usefixtures instead |\n| [PT020] | @pytest.yield_fixture is deprecated, use @pytest.fixture |\n| [PT021] | use yield instead of request.addfinalizer |\n| [PT022] | no teardown in fixture {name}, use return instead of yield |\n| [PT023] | use @pytest.mark.foo() over @pytest.mark.foo <br> (configurable by `pytest-mark-no-parentheses`) |\n| [PT024] | pytest.mark.asyncio is unnecessary for fixtures |\n| [PT025] | pytest.mark.usefixtures has no effect on fixtures |\n| [PT026] | useless pytest.mark.usefixtures without parameters | \n| [PT027] | use pytest.raises() instead of unittest-style '{assertion}' |\n\n## Installation\n\n    pip install flake8-pytest-style\n\n## Configuration\n\nThe plugin has the following configuration options:\n\n* `pytest-fixture-no-parentheses` &mdash; see [PT001]\n* `pytest-parametrize-names-type` &mdash; see [PT006]\n* `pytest-parametrize-values-type` &mdash; see [PT007]\n* `pytest-parametrize-values-row-type` &mdash; see [PT007]\n* `pytest-raises-require-match-for` &mdash; see [PT011]\n* `pytest-mark-no-parentheses` &mdash; see [PT023]\n\n## For developers\n\n### Install deps and setup pre-commit hook\n\n    make init\n\n### Run linters, autoformat, tests etc.\n\n    make format lint test\n\n### Bump new version\n\n    make bump_major\n    make bump_minor\n    make bump_patch\n\n## License\n\nMIT\n\n## Change Log\n\n**Unreleased**\n\n...\n\n**2.0.0 - 2024-04-01**\n\n* **BREAKING:** invert default values for `pytest-fixture-no-parentheses` and `pytest-mark-no-parentheses`\n  to conform with `pytest` official style\n  * If you get a lot of [PT001] or [PT023] violations after upgrading, consider setting explicit values\n    for these configuration options\n* require at least Python 3.8.1\n* support Python 3.12\n\n**1.7.2 - 2023-02-15**\n\n* fix false positive for [PT009] on `pytest.fail`\n\n**1.7.1 - 2023-02-15**\n\n* update list of unittest-style assert methods for [PT009]/[PT027]\n\n**1.7.0 - 2023-02-09**\n\n* require at least Python 3.7.2\n* support Python 3.11\n* add [PT027] (checks for unittest-style `assertRaises`)\n\n**1.6.0 - 2021-12-23**\n\n* require at least Python 3.6.2\n* expose `py.typed` file\n\n**1.5.1 - 2021-11-05**\n\n* better wording for [PT011]\n* support Python 3.10\n\n**1.5.0 - 2021-06-18**\n\n* add [PT025] (checks for erroneous `pytest.mark.usefixtures` on fixtures)\n* add [PT026] (checks for `pytest.mark.usefixtures` without parameters)\n\n**1.4.4 - 2021-06-17**\n\n* fix [PT023] not checking marks in classes\n* fix [PT004] incorrectly firing on fixtures with `yield from`\n\n**1.4.2 - 2021-05-24**\n\n* update `flake8-plugin-utils` version to improve stability\n\n**1.4.1 - 2021-04-01**\n\n* fix argparse-related warnings\n\n**1.4.0 - 2021-03-14**\n\n* add [PT023] (checks for parentheses consistency in `pytest.mark` usage)\n* add [PT024] (checks for unnecessary `pytest.mark.asyncio` on fixtures)\n* fix [PT004], [PT005] firing on abstract fixtures\n* fix [PT012] firing on `with` statements containing a single `pass`\n\n**1.3.0 - 2020-08-30**\n\n* add [PT022] (checks for `yield` fixtures without teardown)\n\n**1.2.3 - 2020-08-06**\n\n* update `flake8-plugin-utils` dependency to fix encoding problems on Windows\n\n**1.2.2 - 2020-07-23**\n\n* fix [PT004]/[PT005] inspecting returns of nested functions\n\n**1.2.1 - 2020-06-15**\n\n* fix [PT021] for factory fixtures (#46)\n\n**1.2.0 - 2020-06-12**\n\n* support scoped `mocker` fixtures from `pytest-mock` for [PT008]\n* check for positional-only lambda arguments in [PT008]\n* add [PT020] (checks for `pytest.yield_fixture`)\n* add [PT021] (checks for `request.addfinalizer`)\n* add documentation pages for all rules\n\n**1.1.1 - 2020-04-17**\n\n* fix [PT011] not reporting `match=''` as a violation\n\n**1.1.0 - 2020-04-14**\n\n* add [PT015] (checks for `assert False`)\n* add [PT016] (checks for `pytest.fail()` without message)\n* add [PT017] (checks for assertions on exceptions in `except` blocks)\n* add [PT018] (checks for composite assertions)\n* add [PT019] (checks for fixtures without value injected as parameters)\n\n**1.0.0 - 2020-03-26**\n\n* add [PT014] (checks for duplicate test cases in `@pytest.mark.parametrize`)\n\n**0.6.0 - 2020-03-21**\n\n* add configuration option `pytest-parametrize-names-type` for [PT006]\n* add configuration options `pytest-parametrize-values-type` and\n`pytest-parametrize-values-row-type` for [PT007]\n\n**0.5.0 - 2020-03-09**\n\n* add configuration option `pytest-fixture-no-parentheses` for [PT001]\n* add [PT013] (checks for `from`-imports from `pytest`)\n\n**0.4.0 - 2020-03-09**\n\n* add [PT012] (checks for multiple statements in `with pytest.raises()`)\n\n**0.3.1 - 2020-03-09**\n\n* fix default value of `pytest-raises-require-match-for` config option\n\n**0.3.0 - 2020-03-09**\n\n* add [PT010] and [PT011] (checks for `pytest.raises` parameters)\n\n**0.2.0 - 2020-03-01**\n\n* add [PT009] (ported from [flake8-pytest](https://github.com/vikingco/flake8-pytest))\n\n**0.1.3 - 2019-05-24**\n\n* add `yield` fixtures support\n* fix changelog entry for 0.1.2\n\n**0.1.2 - 2019-05-23**\n\n* fix parametrize checkers not working in decorators\n\n**0.1.1 - 2019-05-23**\n\n* update PyPI description\n\n**0.1.0 - 2019-05-23**\n\n* initial\n\n[PT001]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT001.md\n[PT002]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT002.md\n[PT003]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT003.md\n[PT004]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT004.md\n[PT005]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT005.md\n[PT006]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT006.md\n[PT007]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT007.md\n[PT008]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT008.md\n[PT009]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT009.md\n[PT010]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT010.md\n[PT011]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT011.md\n[PT012]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT012.md\n[PT013]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT013.md\n[PT014]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT014.md\n[PT015]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT015.md\n[PT016]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT016.md\n[PT017]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT017.md\n[PT018]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT018.md\n[PT019]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT019.md\n[PT020]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT020.md\n[PT021]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT021.md\n[PT022]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT022.md\n[PT023]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT023.md\n[PT024]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT024.md\n[PT025]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT025.md\n[PT026]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT026.md\n[PT027]: https://github.com/m-burst/flake8-pytest-style/blob/v2.0.0/docs/rules/PT027.md\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A flake8 plugin checking common style issues or inconsistencies with pytest-based tests.",
    "version": "2.0.0",
    "project_urls": {
        "Homepage": "https://pypi.org/project/flake8-pytest-style",
        "Repository": "https://github.com/m-burst/flake8-pytest-style"
    },
    "split_keywords": [
        "flake8",
        " pytest"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "029603d935ca9383b8df39b7db6a70da6e7aa856b33081f87caed3e18adf0cc5",
                "md5": "34cdfd47d3d02bdb07b0620b6fe4fae6",
                "sha256": "abcb9f56f277954014b749e5a0937fae215be01a21852e9d05e7600c3de6aae5"
            },
            "downloads": -1,
            "filename": "flake8_pytest_style-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "34cdfd47d3d02bdb07b0620b6fe4fae6",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0.0,>=3.8.1",
            "size": 19538,
            "upload_time": "2024-04-01T17:16:00",
            "upload_time_iso_8601": "2024-04-01T17:16:00.191422Z",
            "url": "https://files.pythonhosted.org/packages/02/96/03d935ca9383b8df39b7db6a70da6e7aa856b33081f87caed3e18adf0cc5/flake8_pytest_style-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51315bb7e30878e8a1783930681767cae29a2304d9006548ab4ad905c121ff88",
                "md5": "de1cb4999ebe09d00312aaf441c0b712",
                "sha256": "919c328cacd4bc4f873ea61ab4db0d8f2c32e0db09a3c73ab46b1de497556464"
            },
            "downloads": -1,
            "filename": "flake8_pytest_style-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "de1cb4999ebe09d00312aaf441c0b712",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0.0,>=3.8.1",
            "size": 16540,
            "upload_time": "2024-04-01T17:16:01",
            "upload_time_iso_8601": "2024-04-01T17:16:01.906632Z",
            "url": "https://files.pythonhosted.org/packages/51/31/5bb7e30878e8a1783930681767cae29a2304d9006548ab4ad905c121ff88/flake8_pytest_style-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-01 17:16:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "m-burst",
    "github_project": "flake8-pytest-style",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "flake8-pytest-style"
}
        
Elapsed time: 0.21445s