Skip to content

Commit 8d5cb75

Browse files
committed
comments
1 parent b7f4a96 commit 8d5cb75

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

pyproject.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
#
2+
# Tool: Black
3+
#
4+
15
[tool.black]
26
# 'extend-exclude' excludes files or directories in addition to the defaults
37
extend-exclude = '''
@@ -9,6 +13,11 @@ extend-exclude = '''
913
)
1014
'''
1115

16+
17+
#
18+
# Tool: Coverage
19+
#
20+
1221
[tool.coverage.run]
1322
branch = true
1423
omit = [
@@ -22,6 +31,10 @@ exclude_also = [
2231
"if TYPE_CHECKING:",
2332
]
2433

34+
#
35+
# Tool: Pytest
36+
#
37+
2538
[tool.pytest.ini_options]
2639
addopts = "-vvv -rfEs -s --durations=5 --cov=./sentry_sdk --cov-branch --cov-report= --tb=short --junitxml=.junitxml"
2740
asyncio_mode = "strict"
@@ -34,6 +47,10 @@ markers = [
3447
verbose = true
3548
nobeep = true
3649

50+
#
51+
# Tool: Mypy
52+
#
53+
3754
[tool.mypy]
3855
allow_redefinition = true
3956
check_untyped_defs = true
@@ -43,7 +60,7 @@ disallow_subclassing_any = true
4360
disallow_untyped_decorators = true
4461
disallow_untyped_defs = true
4562
no_implicit_optional = true
46-
python_version = "3.11"
63+
python_version = "3.11"
4764
strict_equality = true
4865
strict_optional = true
4966
warn_redundant_casts = true

0 commit comments

Comments
 (0)