diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f4cfeee..db8216c 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -17,15 +17,15 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/crate-ci/typos - rev: 12ffd4a04b4893ab75db66a59aaad2d996c3e982 # frozen: v1 + rev: c132f8b9e3ac7f8f0625490b1cb5b906d1d6a63a # frozen: v1 hooks: - id: typos - repo: https://github.com/tox-dev/pyproject-fmt - rev: d600c142bb19f521ae6a6a345f94a2efd7937759 # frozen: v2.26.0 + rev: 3b42b9776870badc9eaffdef9a4a0834b764d87c # frozen: v2.29.3 hooks: - id: pyproject-fmt - repo: https://github.com/tox-dev/tox-ini-fmt - rev: 69e8f0ead1b1164c731b4a702896e3218feecf0b # frozen: 1.8.1 + rev: 241ced4140307006cfd8b2b9ccfd43b1139cfe4a # frozen: 1.9.0 hooks: - id: tox-ini-fmt - repo: https://github.com/rstcheck/rstcheck @@ -41,13 +41,13 @@ repos: additional_dependencies: - black==25.1.0 - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 39d9ac5938dadb73df0564a45f163e25ff9fa6e2 # frozen: v0.16.1 + rev: 321478e58f4938179c6b86e4ddfa923d1547a49b # frozen: v0.16.6 hooks: - id: ruff-check args: [ --fix ] - id: ruff-format - repo: https://github.com/pre-commit/mirrors-mypy - rev: 41e691678310dfd3833f7ab4e180ddb014310356 # frozen: v2.3.0 + rev: 7ff8d35ae36a7d2b968f2f90b4c723e292e594ee # frozen: v2.3.1 hooks: - id: mypy additional_dependencies: diff --git a/pyproject.toml b/pyproject.toml index d66a01b..463e31f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -112,20 +112,20 @@ overrides = [ { module = "tests.*", allow_untyped_defs = true } ] strict = true [tool.coverage] -run.branch = true -run.data_file = ".coverage/cov" -run.parallel = true run.source = [ "pytest_randomly", "tests", ] +run.branch = true +run.data_file = ".coverage/cov" +run.parallel = true paths.source = [ "src", ".tox/**/site-packages", ] -report.show_missing = true report.skip_covered = true report.skip_empty = true +report.show_missing = true [tool.rstcheck] report_level = "ERROR"