Skip to content
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 @@ -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