File tree 2 files changed +8
-6
lines changed 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,9 @@ ignore-words-list = "indention"
59
59
60
60
[tool .coverage .run ]
61
61
source = [" src" ]
62
- branch = true
62
+ # Do not use branch until bug is fixes:
63
+ # https://github.com/nedbat/coveragepy/issues/605
64
+ # branch = true
63
65
parallel = true
64
66
concurrency = [" multiprocessing" , " thread" ]
65
67
@@ -203,7 +205,7 @@ python_files = [
203
205
xfail_strict = true
204
206
markers = [
205
207
" eco: Tests effects on a set of 3rd party ansible repositories" ,
206
- " formatting_fixtures: Test that regenerates and tests formatting fixtures (requires prettier on PATH)"
208
+ " formatting_fixtures: Test that regenerates and tests formatting fixtures (requires prettier on PATH)" ,
207
209
]
208
210
209
211
[tool .setuptools .dynamic ]
Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ skip_install = true
184
184
deps =
185
185
{[testenv]deps}
186
186
commands =
187
- python -m venv .tox/venv
187
+ python3 -m venv .tox/venv
188
188
.tox/venv/bin/pip install -q git+https://github.com/ansible/ansible-lint@main
189
189
pytest -n auto --durations =3 -m eco
190
190
allowlist_externals =
@@ -229,10 +229,10 @@ usedevelop = false
229
229
setenv =
230
230
COVERAGE_PROCESS_START ={toxinidir}/pyproject.toml
231
231
commands =
232
- python -m coverage --version
232
+ python3 -m coverage --version
233
233
# needed by codecov github actions, also ignored result to reach report one.
234
- python -m coverage xml --fail-under =0
234
+ python3 -m coverage xml --fail-under =0
235
235
# just for humans running it:
236
- coverage report
236
+ python3 -m coverage report
237
237
deps =
238
238
coverage[toml]>=7.0.5
You can’t perform that action at this time.
0 commit comments