File tree 2 files changed +24
-5
lines changed
2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,10 @@ Source = "https://github.com/PROJECT_PATH"
28
28
test = [
29
29
# upstream
30
30
" pytest >= 6, != 8.1.*" ,
31
- " pytest-checkdocs >= 2.4" ,
32
- " pytest-cov" ,
33
- " pytest-mypy" ,
34
- " pytest-enabler >= 2.2" ,
35
- " pytest-ruff >= 0.2.1; sys_platform != 'cygwin'" ,
36
31
37
32
# local
38
33
]
34
+
39
35
doc = [
40
36
# upstream
41
37
" sphinx >= 3.5" ,
@@ -47,4 +43,23 @@ doc = [
47
43
# local
48
44
]
49
45
46
+ check = [
47
+ " pytest-checkdocs >= 2.4" ,
48
+ " pytest-ruff >= 0.2.1; sys_platform != 'cygwin'" ,
49
+ ]
50
+
51
+ cover = [
52
+ " pytest-cov" ,
53
+ ]
54
+
55
+ enabler = [
56
+ " pytest-enabler >= 2.2" ,
57
+ ]
58
+
59
+ type = [
60
+ " pytest-mypy" ,
61
+ ]
62
+
63
+
64
+
50
65
[tool .setuptools_scm ]
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ commands =
8
8
usedevelop = True
9
9
extras =
10
10
test
11
+ check
12
+ cover
13
+ enabler
14
+ type
11
15
12
16
[testenv:diffcov]
13
17
description = run tests and check that diff from main is covered
You can’t perform that action at this time.
0 commit comments