File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ filterwarnings =
1919[testenv]
2020usedevelop =True
2121commands =
22+ pip install urllib3<2
2223 pip install pylxd
2324 python -m pytest --tb native -ra -v -s -n auto -k ' not integration' -m ' not serial' {posargs}
2425passenv =
@@ -58,19 +59,22 @@ deps =
5859[testenv:integration]
5960envdir = {toxworkdir}/py3
6061commands =
62+ pip install urllib3<2
6163 pip install pylxd
6264 python -m pytest --tb native -ra -v -n auto -k ' integration' -m ' not serial' {posargs}
6365
6466[testenv:unit]
6567envdir = {toxworkdir}/py3
6668commands =
69+ pip install urllib3<2
6770 pip install pylxd
6871 python -m pytest --tb native -ra -v -n auto {toxinidir}/tests/unit {posargs}
6972
7073[testenv:serial]
7174# tests that can't be run in parallel
7275envdir = {toxworkdir}/py3
7376commands =
77+ pip install urllib3<2
7478 pip install pylxd
7579 python -m pytest --tb native -ra -v -s {posargs:-m ' serial' }
7680
You can’t perform that action at this time.
0 commit comments