Skip to content

Commit 75023c9

Browse files
committed
Fix coverage config
1 parent 01a9d81 commit 75023c9

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.pre-commit-config.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,12 @@ repos:
7171
- '--check'
7272
files: '^release_management/'
7373

74-
- repo: https://github.com/tox-dev/tox-ini-fmt
75-
rev: 1.4.1
76-
hooks:
77-
- id: tox-ini-fmt
78-
name: "Format tox.ini"
74+
# Disabled: no support for comments as at 2025-11-27.
75+
# - repo: https://github.com/tox-dev/tox-ini-fmt
76+
# rev: 1.4.1
77+
# hooks:
78+
# - id: tox-ini-fmt
79+
# name: "Format tox.ini"
7980

8081
- repo: https://github.com/sphinx-contrib/sphinx-lint
8182
rev: v1.0.0

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,10 @@ commands =
1515

1616
[coverage:run]
1717
omit =
18-
*/__main__.py # Ignore all __main__.py files
19-
peps/* # Ignore all files in the PEPs folder
18+
# Ignore all __main__.py files
19+
*/__main__.py
20+
# Ignore all files in the PEPs folder
21+
peps/*
2022

2123
[coverage:report]
2224
exclude_also =

0 commit comments

Comments
 (0)