@@ -74,7 +74,7 @@ commands =
7474 # we use "env" rather than putting a value in `setenv` so that it is not
7575 # inherited by other tox environments.
7676 #
77- # keep this in sync with the copy in `testenv:py35 -old`.
77+ # keep this in sync with the copy in `testenv:py3 -old`.
7878 #
7979 /usr/bin/env COVERAGE_PROCESS_START ={toxinidir}/.coveragerc " {envbindir}/trial" {env:TRIAL_FLAGS:} {posargs:tests} {env:TOXSUFFIX:}
8080
@@ -103,8 +103,9 @@ usedevelop=true
103103
104104# A test suite for the oldest supported versions of Python libraries, to catch
105105# any uses of APIs not available in them.
106- [testenv:py35-old]
107- skip_install =True
106+ [testenv:py3-old]
107+ skip_install = true
108+ usedevelop = false
108109deps =
109110 # Old automat version for Twisted
110111 Automat == 0.3.0
@@ -136,7 +137,8 @@ commands =
136137 python -m synmark {posargs:}
137138
138139[testenv:packaging]
139- skip_install =True
140+ skip_install = true
141+ usedevelop = false
140142deps =
141143 check-manifest
142144commands =
@@ -154,7 +156,8 @@ extras = lint
154156commands = isort -c --df --sp setup.cfg {[base]lint_targets}
155157
156158[testenv:check-newsfragment]
157- skip_install = True
159+ skip_install = true
160+ usedevelop = false
158161deps = towncrier>=18.6.0rc1
159162commands =
160163 python -m towncrier.check --compare-with =origin/develop
@@ -163,7 +166,8 @@ commands =
163166commands = {toxinidir}/scripts-dev/generate_sample_config --check
164167
165168[testenv:combine]
166- skip_install = True
169+ skip_install = true
170+ usedevelop = false
167171deps =
168172 coverage
169173 pip>=10 ; python_version >= '3.6'
@@ -173,14 +177,16 @@ commands=
173177 coverage report
174178
175179[testenv:cov-erase]
176- skip_install = True
180+ skip_install = true
181+ usedevelop = false
177182deps =
178183 coverage
179184commands =
180185 coverage erase
181186
182187[testenv:cov-html]
183- skip_install = True
188+ skip_install = true
189+ usedevelop = false
184190deps =
185191 coverage
186192commands =
0 commit comments