Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: pre-commit autoupdate #4390

Merged
merged 2 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ repos:
- prettier-plugin-sort-json

- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black

Expand All @@ -62,14 +62,14 @@ repos:
- id: tox-ini-fmt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.9.3
rev: v0.9.4
hooks:
- id: ruff
args:
- --exit-non-zero-on-fix

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.17.1
rev: v8.17.2
hooks:
- id: cspell
name: Spell check with cspell
Expand All @@ -83,7 +83,7 @@ repos:
pass_filenames: false

- repo: https://github.com/pycqa/pylint.git
rev: v3.3.3
rev: v3.3.4
hooks:
- id: pylint
args:
Expand Down Expand Up @@ -145,7 +145,7 @@ repos:
additional_dependencies:
- uv>=0.5.21
- repo: https://github.com/ansible/ansible-lint
rev: v25.1.0
rev: v25.1.1
hooks:
- id: ansible-lint
stages: [manual]
2 changes: 1 addition & 1 deletion tests/unit/model/v2/test_provisioner_section.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _model_provisioner_allows_ansible_section_data(): # type: ignore[no-untyped

@pytest.mark.parametrize(
"config",
[("_model_provisioner_allows_ansible_section_data")], # noqa: PT007
["_model_provisioner_allows_ansible_section_data"], # noqa: PT007
indirect=True,
)
def test_provisioner_allows_name(config): # type: ignore[no-untyped-def] # noqa: ANN201, D103
Expand Down