diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6347c4f1..2f29586d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -23,7 +23,7 @@ repos: - mdformat-myst - repo: https://github.com/adamchainz/blacken-docs - rev: "1.13.0" + rev: "1.14.0" hooks: - id: blacken-docs additional_dependencies: @@ -43,7 +43,7 @@ repos: - markdown # managed by mdformat - repo: https://github.com/tox-dev/pyproject-fmt - rev: "0.11.2" + rev: "0.12.0" hooks: - id: pyproject-fmt diff --git a/pyproject.toml b/pyproject.toml index c28f7d4c..f96f4b58 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,11 +3,6 @@ line-length = 100 skip-string-normalization = true -[tool.pytest.ini_options] -log_cli = true -log_level = "INFO" -addopts = "--cov=./ --cov-report=xml --verbose" - [tool.ruff] select = [ "B", # flake8-bugbear @@ -59,3 +54,8 @@ known-third-party = [ [tool.ruff.flake8-bugbear] # Allow fastapi.Depends and other dependency injection style function arguments extend-immutable-calls = ["fastapi.Depends", "fastapi.Query"] + +[tool.pytest.ini_options] +log_cli = true +log_level = "INFO" +addopts = "--cov=./ --cov-report=xml --verbose"