File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 18
18
python : ' 3.9'
19
19
jobs :
20
20
post_create_environment :
21
- - pip install .[all]
21
+ - pip install .
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ known_third_party = [
44
44
" importlib_metadata" ,
45
45
" mistletoe" ,
46
46
" mypy" ,
47
+ " psutil" ,
47
48
" pytest" ,
48
49
" pytest_cov" ,
49
50
" pytest_mypy_plugins" ,
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ short_desc: 'Additional utilities for click.'
12
12
use_flit : true
13
13
min_coverage : 90
14
14
docs_fail_on_warning : true
15
- tox_testenv_extras : all
16
15
mypy_version : " 0.971"
17
16
python_deploy_version : 3.6
18
17
Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ domdf-python-tools[testing]>=2.0.1
7
7
importlib-metadata >= 3.6.0
8
8
iniconfig != 1.1.0 ,>= 1.0.1
9
9
mypy == 0.971 ; platform_python_implementation == "CPython"
10
+ psutil >= 5.9.6 ; platform_python_implementation == "PyPy" and platform_system != "Windows"
11
+ psutil >= 5.9.6 ; platform_python_implementation != "PyPy" and platform_system == "Windows"
12
+ psutil >= 5.9.6 ; platform_python_implementation != "PyPy" and platform_system != "Windows"
10
13
pytest >= 6.0.0
11
14
pytest-cov >= 2.8.1
12
15
pytest-mypy-plugins >= 1.9.1 ; platform_python_implementation == "CPython"
Original file line number Diff line number Diff line change @@ -79,7 +79,6 @@ setenv = SHOW_TODOS = 1
79
79
passenv = SPHINX_BUILDER
80
80
basepython = python3.8
81
81
changedir = {toxinidir}/doc-source
82
- extras = all
83
82
deps = -r{toxinidir}/doc-source/requirements.txt
84
83
commands = sphinx-build -M {env:SPHINX_BUILDER:html} . ./build {posargs}
85
84
@@ -142,7 +141,6 @@ commands = python3 -m perflint consolekit {posargs}
142
141
basepython = python3.6
143
142
ignore_errors = True
144
143
changedir = {toxinidir}
145
- extras = all
146
144
deps =
147
145
mypy ==0.971
148
146
-r{toxinidir}/tests/requirements.txt
@@ -155,7 +153,6 @@ skip_install = True
155
153
ignore_errors = True
156
154
changedir = {toxinidir}
157
155
deps = pyupgrade-directories
158
- extras = all
159
156
commands = pyup_dirs consolekit tests --py36-plus --recursive
160
157
161
158
[testenv:coverage]
You can’t perform that action at this time.
0 commit comments