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 #250

Merged
merged 3 commits into from
Sep 5, 2024
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ repos:
- id: tox-ini-fmt

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

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

- repo: https://github.com/pycqa/pylint.git
rev: v3.2.6
rev: v3.2.7
hooks:
- id: pylint
args:
Expand All @@ -93,7 +93,7 @@ repos:
- tox

- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v1.11.1
rev: v1.11.2
hooks:
- id: mypy
additional_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def test_editable_not_local(
config=config,
)

def install_core(self: Installer) -> None: # noqa: ARG001
def install_core(self: Installer) -> None:
"""Don't install core.
Args:
Expand Down Expand Up @@ -1195,7 +1195,7 @@ def test_local_collection_without_tar_install(
installer.run()
pre_mtime = os.lstat(config.site_pkg_collections_path / "ansible" / "posix").st_mtime

def install_local_collection(self: Installer, collection: Collection) -> None: # noqa: ARG001
def install_local_collection(self: Installer, collection: Collection) -> None:
"""Do nothing.
Args:
Expand Down
Loading