├── .bumpversion.cfg ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ └── rule-request.md ├── dependabot.yml └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── THIRD-PARTY-LICENSES ├── docs └── rules │ ├── PT001.md │ ├── PT002.md │ ├── PT003.md │ ├── PT004.md │ ├── PT005.md │ ├── PT006.md │ ├── PT007.md │ ├── PT008.md │ ├── PT009.md │ ├── PT010.md │ ├── PT011.md │ ├── PT012.md │ ├── PT013.md │ ├── PT014.md │ ├── PT015.md │ ├── PT016.md │ ├── PT017.md │ ├── PT018.md │ ├── PT019.md │ ├── PT020.md │ ├── PT021.md │ ├── PT022.md │ ├── PT023.md │ ├── PT024.md │ ├── PT025.md │ ├── PT026.md │ ├── PT027.md │ ├── PT028.md │ ├── PT029.md │ ├── PT030.md │ └── PT031.md ├── flake8_pytest_style ├── __init__.py ├── config.py ├── errors.py ├── plugin.py ├── py.typed ├── utils.py └── visitors │ ├── __init__.py │ ├── assertion.py │ ├── fail.py │ ├── fixtures.py │ ├── imports.py │ ├── marks.py │ ├── parametrize.py │ ├── patch.py │ ├── raises.py │ ├── t_functions.py │ ├── try_except.py │ └── warns.py ├── poetry.lock ├── pyproject.toml ├── scripts └── pypi_readme.py ├── setup.cfg └── tests ├── __init__.py ├── conftest.py ├── test_PT001_incorrect_fixture_parentheses_style.py ├── test_PT002_fixture_positional_args.py ├── test_PT003_extraneous_scope_function.py ├── test_PT004_missing_fixture_name_underscore.py ├── test_PT005_incorrect_fixture_name_underscore.py ├── test_PT006_parametrize_names_wrong_type.py ├── test_PT007_parametrize_values_wrong_type.py ├── test_PT008_patch_with_lambda.py ├── test_PT009_unittest_assertion.py ├── test_PT010_raises_without_exception.py ├── test_PT011_raises_too_broad.py ├── test_PT012_raises_with_multiple_statements.py ├── test_PT013_incorrect_pytest_import.py ├── test_PT014_duplicate_parametrize_test_cases.py ├── test_PT015_assert_always_false.py ├── test_PT016_fail_without_message.py ├── test_PT017_assert_in_except.py ├── test_PT018_composite_assertion.py ├── test_PT019_fixture_param_without_value.py ├── test_PT020_deprecated_yield_fixture.py ├── test_PT021_fixture_finalizer_callback.py ├── test_PT022_useless_yield_fixture.py ├── test_PT023_incorrect_mark_parentheses_style.py ├── test_PT024_unncessary_asyncio_mark_on_fixture.py ├── test_PT025_erroneous_usefixtures_on_fixture.py ├── test_PT026_usefixtures_without_parameters.py ├── test_PT027_unittest_raises_assertion.py ├── test_PT028_test_function_argument_with_default.py ├── test_PT029_warns_without_warning.py ├── test_PT030_warns_too_broad.py ├── test_PT031_warns_with_multiple_statements.py ├── test_config.py └── test_plugin.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rule-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/.github/ISSUE_TEMPLATE/rule-request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/README.md -------------------------------------------------------------------------------- /THIRD-PARTY-LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/THIRD-PARTY-LICENSES -------------------------------------------------------------------------------- /docs/rules/PT001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT001.md -------------------------------------------------------------------------------- /docs/rules/PT002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT002.md -------------------------------------------------------------------------------- /docs/rules/PT003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT003.md -------------------------------------------------------------------------------- /docs/rules/PT004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT004.md -------------------------------------------------------------------------------- /docs/rules/PT005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT005.md -------------------------------------------------------------------------------- /docs/rules/PT006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT006.md -------------------------------------------------------------------------------- /docs/rules/PT007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT007.md -------------------------------------------------------------------------------- /docs/rules/PT008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT008.md -------------------------------------------------------------------------------- /docs/rules/PT009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT009.md -------------------------------------------------------------------------------- /docs/rules/PT010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT010.md -------------------------------------------------------------------------------- /docs/rules/PT011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT011.md -------------------------------------------------------------------------------- /docs/rules/PT012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT012.md -------------------------------------------------------------------------------- /docs/rules/PT013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT013.md -------------------------------------------------------------------------------- /docs/rules/PT014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT014.md -------------------------------------------------------------------------------- /docs/rules/PT015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT015.md -------------------------------------------------------------------------------- /docs/rules/PT016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT016.md -------------------------------------------------------------------------------- /docs/rules/PT017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT017.md -------------------------------------------------------------------------------- /docs/rules/PT018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT018.md -------------------------------------------------------------------------------- /docs/rules/PT019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT019.md -------------------------------------------------------------------------------- /docs/rules/PT020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT020.md -------------------------------------------------------------------------------- /docs/rules/PT021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT021.md -------------------------------------------------------------------------------- /docs/rules/PT022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT022.md -------------------------------------------------------------------------------- /docs/rules/PT023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT023.md -------------------------------------------------------------------------------- /docs/rules/PT024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT024.md -------------------------------------------------------------------------------- /docs/rules/PT025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT025.md -------------------------------------------------------------------------------- /docs/rules/PT026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT026.md -------------------------------------------------------------------------------- /docs/rules/PT027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT027.md -------------------------------------------------------------------------------- /docs/rules/PT028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT028.md -------------------------------------------------------------------------------- /docs/rules/PT029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT029.md -------------------------------------------------------------------------------- /docs/rules/PT030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT030.md -------------------------------------------------------------------------------- /docs/rules/PT031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/docs/rules/PT031.md -------------------------------------------------------------------------------- /flake8_pytest_style/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flake8_pytest_style/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/config.py -------------------------------------------------------------------------------- /flake8_pytest_style/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/errors.py -------------------------------------------------------------------------------- /flake8_pytest_style/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/plugin.py -------------------------------------------------------------------------------- /flake8_pytest_style/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flake8_pytest_style/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/utils.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/__init__.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/assertion.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/fail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/fail.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/fixtures.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/imports.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/marks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/marks.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/parametrize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/parametrize.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/patch.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/raises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/raises.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/t_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/t_functions.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/try_except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/try_except.py -------------------------------------------------------------------------------- /flake8_pytest_style/visitors/warns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/flake8_pytest_style/visitors/warns.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/pypi_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/scripts/pypi_readme.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/setup.cfg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_PT001_incorrect_fixture_parentheses_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT001_incorrect_fixture_parentheses_style.py -------------------------------------------------------------------------------- /tests/test_PT002_fixture_positional_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT002_fixture_positional_args.py -------------------------------------------------------------------------------- /tests/test_PT003_extraneous_scope_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT003_extraneous_scope_function.py -------------------------------------------------------------------------------- /tests/test_PT004_missing_fixture_name_underscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT004_missing_fixture_name_underscore.py -------------------------------------------------------------------------------- /tests/test_PT005_incorrect_fixture_name_underscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT005_incorrect_fixture_name_underscore.py -------------------------------------------------------------------------------- /tests/test_PT006_parametrize_names_wrong_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT006_parametrize_names_wrong_type.py -------------------------------------------------------------------------------- /tests/test_PT007_parametrize_values_wrong_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT007_parametrize_values_wrong_type.py -------------------------------------------------------------------------------- /tests/test_PT008_patch_with_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT008_patch_with_lambda.py -------------------------------------------------------------------------------- /tests/test_PT009_unittest_assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT009_unittest_assertion.py -------------------------------------------------------------------------------- /tests/test_PT010_raises_without_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT010_raises_without_exception.py -------------------------------------------------------------------------------- /tests/test_PT011_raises_too_broad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT011_raises_too_broad.py -------------------------------------------------------------------------------- /tests/test_PT012_raises_with_multiple_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT012_raises_with_multiple_statements.py -------------------------------------------------------------------------------- /tests/test_PT013_incorrect_pytest_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT013_incorrect_pytest_import.py -------------------------------------------------------------------------------- /tests/test_PT014_duplicate_parametrize_test_cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT014_duplicate_parametrize_test_cases.py -------------------------------------------------------------------------------- /tests/test_PT015_assert_always_false.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT015_assert_always_false.py -------------------------------------------------------------------------------- /tests/test_PT016_fail_without_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT016_fail_without_message.py -------------------------------------------------------------------------------- /tests/test_PT017_assert_in_except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT017_assert_in_except.py -------------------------------------------------------------------------------- /tests/test_PT018_composite_assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT018_composite_assertion.py -------------------------------------------------------------------------------- /tests/test_PT019_fixture_param_without_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT019_fixture_param_without_value.py -------------------------------------------------------------------------------- /tests/test_PT020_deprecated_yield_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT020_deprecated_yield_fixture.py -------------------------------------------------------------------------------- /tests/test_PT021_fixture_finalizer_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT021_fixture_finalizer_callback.py -------------------------------------------------------------------------------- /tests/test_PT022_useless_yield_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT022_useless_yield_fixture.py -------------------------------------------------------------------------------- /tests/test_PT023_incorrect_mark_parentheses_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT023_incorrect_mark_parentheses_style.py -------------------------------------------------------------------------------- /tests/test_PT024_unncessary_asyncio_mark_on_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT024_unncessary_asyncio_mark_on_fixture.py -------------------------------------------------------------------------------- /tests/test_PT025_erroneous_usefixtures_on_fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT025_erroneous_usefixtures_on_fixture.py -------------------------------------------------------------------------------- /tests/test_PT026_usefixtures_without_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT026_usefixtures_without_parameters.py -------------------------------------------------------------------------------- /tests/test_PT027_unittest_raises_assertion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT027_unittest_raises_assertion.py -------------------------------------------------------------------------------- /tests/test_PT028_test_function_argument_with_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT028_test_function_argument_with_default.py -------------------------------------------------------------------------------- /tests/test_PT029_warns_without_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT029_warns_without_warning.py -------------------------------------------------------------------------------- /tests/test_PT030_warns_too_broad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT030_warns_too_broad.py -------------------------------------------------------------------------------- /tests/test_PT031_warns_with_multiple_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_PT031_warns_with_multiple_statements.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/m-burst/flake8-pytest-style/HEAD/tests/test_plugin.py --------------------------------------------------------------------------------