File tree 3 files changed +11
-128
lines changed
3 files changed +11
-128
lines changed Original file line number Diff line number Diff line change @@ -51,24 +51,19 @@ entry-points.pytest11.echo = "pytest_echo.plugin"
51
51
52
52
[dependency-groups ]
53
53
dev = [
54
- " covdefaults>=2.3" ,
55
- " coverage>=7.6.1" ,
56
- " mkdocs>=1.6.1" ,
57
- " mkdocs-include-markdown-plugin>=6.2.2" ,
58
- " mypy>=1.14.1" ,
59
- " pdbpp>=0.10.3" ,
60
54
" pre-commit" ,
61
55
" pytest>=8.3.4" ,
62
56
" pytest-cov>=5" ,
63
- " pytest-echo" ,
64
- " pytest-mock>=3.14" ,
65
57
" ruff>=0.9.4" ,
66
58
" tox>=4.24.1" ,
67
59
]
68
60
docs = [
69
61
" mkdocs>=1.6.1" ,
70
62
" mkdocs-include-markdown-plugin>=6.2.2" ,
71
63
]
64
+ type-check = [
65
+ " mypy>=1.14.1" ,
66
+ ]
72
67
73
68
[tool .hatch ]
74
69
build.hooks.vcs.version-file = " src/pytest_echo/version.py"
@@ -132,9 +127,6 @@ run.source = [
132
127
run.dynamic_context = " test_function"
133
128
run.branch = true
134
129
run.parallel = true
135
- run.plugins = [
136
- " covdefaults" ,
137
- ]
138
130
report.fail_under = 90
139
131
report.show_missing = true
140
132
html.show_contexts = true
Original file line number Diff line number Diff line change @@ -41,11 +41,10 @@ commands =
41
41
42
42
[testenv:type]
43
43
description = run type check on code base
44
- deps =
45
- mypy ==1.11.2
46
44
commands =
47
45
mypy --strict src
48
46
mypy --strict tests
47
+ dependency_groups = type-check
49
48
50
49
[testenv:docs]
51
50
skip_install = true
You can’t perform that action at this time.
0 commit comments