File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 1+ #
2+ # Tool: Black
3+ #
4+
15[tool .black ]
26# 'extend-exclude' excludes files or directories in addition to the defaults
37extend-exclude = '''
@@ -9,6 +13,11 @@ extend-exclude = '''
913)
1014'''
1115
16+
17+ #
18+ # Tool: Coverage
19+ #
20+
1221[tool .coverage .run ]
1322branch = true
1423omit = [
@@ -22,6 +31,10 @@ exclude_also = [
2231 " if TYPE_CHECKING:" ,
2332]
2433
34+ #
35+ # Tool: Pytest
36+ #
37+
2538[tool .pytest .ini_options ]
2639addopts = " -vvv -rfEs -s --durations=5 --cov=./sentry_sdk --cov-branch --cov-report= --tb=short --junitxml=.junitxml"
2740asyncio_mode = " strict"
@@ -34,6 +47,10 @@ markers = [
3447verbose = true
3548nobeep = true
3649
50+ #
51+ # Tool: Mypy
52+ #
53+
3754[tool .mypy ]
3855allow_redefinition = true
3956check_untyped_defs = true
@@ -43,7 +60,7 @@ disallow_subclassing_any = true
4360disallow_untyped_decorators = true
4461disallow_untyped_defs = true
4562no_implicit_optional = true
46- python_version = " 3.11"
63+ python_version = " 3.11"
4764strict_equality = true
4865strict_optional = true
4966warn_redundant_casts = true
You can’t perform that action at this time.
0 commit comments