Skip to content

Commit

Permalink
chore: pre-commit autoupdate (#262)
Browse files Browse the repository at this point in the history
* chore: pre-commit autoupdate

updates:
- [github.com/psf/black: 24.8.0 → 24.10.0](psf/black@24.8.0...24.10.0)
- [github.com/astral-sh/ruff-pre-commit: v0.6.9 → v0.7.2](astral-sh/ruff-pre-commit@v0.6.9...v0.7.2)
- [github.com/streetsidesoftware/cspell-cli: v8.13.3 → v8.15.2](streetsidesoftware/cspell-cli@v8.13.3...v8.15.2)
- [github.com/pre-commit/mirrors-mypy.git: v1.11.2 → v1.13.0](https://github.com/pre-commit/mirrors-mypy.git/compare/v1.11.2...v1.13.0)

* chore: auto fixes from pre-commit.com hooks

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Nov 4, 2024
1 parent 3347ccd commit 36077dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repos:
- prettier-plugin-sort-json

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

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

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

- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.13.3
rev: v8.15.2
hooks:
- id: cspell
name: Spell check with cspell
Expand All @@ -93,7 +93,7 @@ repos:
- tox

- repo: https://github.com/pre-commit/mirrors-mypy.git
rev: v1.11.2
rev: v1.13.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
6 changes: 3 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
REQS_FILE_NAME = "requirements.yml"


@pytest.fixture()
@pytest.fixture
def galaxy_cache() -> Path:
"""Return the galaxy cache directory.
Expand Down Expand Up @@ -145,7 +145,7 @@ def fixture_session_dir() -> Generator[Path, None, None]:
shutil.rmtree(temp_dir)


@pytest.fixture()
@pytest.fixture
def installable_local_collection(tmp_path: Path) -> Path:
"""Provide a local collection that can be installed.
Expand Down Expand Up @@ -218,7 +218,7 @@ def session_venv(session_dir: Path, monkey_session: pytest.MonkeyPatch) -> Confi
return cli.config


@pytest.fixture()
@pytest.fixture
def function_venv(tmp_path: Path, monkeypatch: pytest.MonkeyPatch) -> Config:
"""Create a temporary venv for the session.
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from pathlib import Path


@pytest.fixture()
@pytest.fixture
def output(tmp_path: Path) -> Output:
"""Create an Output class object as fixture.
Expand Down

0 comments on commit 36077dd

Please sign in to comment.