diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b9847a79b0..c0e2b8f251 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -14,7 +14,7 @@ repos: rev: v0.5.6 hooks: - id: ruff - args: [ "--fix", "--unsafe-fixes", "--exit-non-zero-on-fix"] + args: [ "--fix", "--unsafe-fixes", "--show-fixes", "--exit-non-zero-on-fix"] - id: ruff-format - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.11.1 diff --git a/pyproject.toml b/pyproject.toml index 88684130f9..443de11e7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -101,9 +101,13 @@ check-hidden = true ignore-regex = '\b(UE|path/doesnt/exist)\b' [tool.pytest.ini_options] +minversion = "8" +log_cli_level = "INFO" markers = [ "all_packages: test install with maximum number of packages", ] +testpaths = [ "tests" ] +addopts = [ "-ra", "--strict-config", "--strict-markers" ] [tool.towncrier] directory = "changelog.d"