From 20da6ea7c39e4897cd8958af20088e71cc78a798 Mon Sep 17 00:00:00 2001 From: LilSpazJoekp <15524072+LilSpazJoekp@users.noreply.github.com> Date: Mon, 2 Sep 2024 15:12:05 +0000 Subject: [PATCH] Update pre-commit hooks --- .pre-commit-config.yaml | 4 ++-- docs/package_info/contributing.rst | 18 ++++++------------ 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 1dc36c542..51dd854c2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -42,7 +42,7 @@ repos: files: ^(.*\.toml)$ - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.6.2 + rev: v0.6.3 hooks: - id: ruff args: [ --exit-non-zero-on-fix, --fix ] @@ -56,4 +56,4 @@ repos: - repo: https://github.com/LilSpazJoekp/docstrfmt hooks: - id: docstrfmt - rev: v1.8.0 + rev: v1.9.0 diff --git a/docs/package_info/contributing.rst b/docs/package_info/contributing.rst index a91da242a..62a4c908e 100644 --- a/docs/package_info/contributing.rst +++ b/docs/package_info/contributing.rst @@ -133,8 +133,7 @@ Linting_: arg1, arg2, optional_arg1=None, - ): - ... + ): ... There is some exceptions to this: @@ -144,8 +143,7 @@ Linting_: .. code-block:: python class ExampleClass: - def pair(self, left, right): - ... + def pair(self, left, right): ... - If there is one or two mandatory arguments and some optional arguments, then the mandatory arguments may be positional (as long as it adheres to the previous point), @@ -171,8 +169,7 @@ Linting_: send_replies=True, spoiler=False, url=None, - ): - ... + ): ... Testing ------- @@ -250,18 +247,15 @@ Examples: @pytest.mark.recorder_kwargs(allow_playback_repeats=True) class TestClass: @pytest.mark.recorder_kwargs(match_requests_on=["uri", "method", "body"]) - def test_example(self): - ... + def test_example(self): ... @pytest.mark.cassette_name("TestClass.test_example") @pytest.mark.recorder_kwargs(match_requests_on=["uri", "method", "body"]) - def test_example__different_assertion(self): - ... + def test_example__different_assertion(self): ... @pytest.mark.add_placeholder(generated_data_a=generate_data_a()) @pytest.mark.add_placeholder(generated_data_b=generate_data_b()) - def test_example__with_generated_placeholders(self): - ... + def test_example__with_generated_placeholders(self): ... Documentation -------------