File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -13,23 +13,27 @@ commands =
1313
1414[testenv:py310-check-uc]
1515basepython = python3.10
16- deps = -r{toxinidir}/upper-constraints.txt
17- commands = python -c ' print("done")'
16+ skip_install = true
17+ deps =
18+ commands = python -m pip install --dry-run -r{toxinidir}/upper-constraints.txt
1819
1920[testenv:py311-check-uc]
2021basepython = python3.11
21- deps = -r{toxinidir}/upper-constraints.txt
22- commands = python -c ' print("done")'
22+ skip_install = true
23+ deps =
24+ commands = {[testenv:py310-check-uc]commands}
2325
2426[testenv:py312-check-uc]
2527basepython = python3.12
26- deps = -r{toxinidir}/upper-constraints.txt
27- commands = python -c ' print("done")'
28+ skip_install = true
29+ deps =
30+ commands = {[testenv:py310-check-uc]commands}
2831
2932[testenv:py313-check-uc]
3033basepython = python3.13
31- deps = -r{toxinidir}/upper-constraints.txt
32- commands = python -c ' print("done")'
34+ skip_install = true
35+ deps =
36+ commands = {[testenv:py310-check-uc]commands}
3337
3438[testenv:venv]
3539commands = {posargs}
You can’t perform that action at this time.
0 commit comments