Skip to content

Commit aea5b58

Browse files
committed
Remove urllib3 from tox envs
PyLXD needs a specific urllib3 version range, remove urllib3 installation and let pick choose a version compatible with PyLXD.
1 parent b394102 commit aea5b58

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

tox.ini

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ filterwarnings =
1919
[testenv]
2020
usedevelop=True
2121
commands =
22-
# These need to be installed in a specific order
23-
pip install urllib3
2422
pip install pylxd
2523
python -m pytest --tb native -ra -v -s -n auto -k 'not integration' -m 'not serial' {posargs}
2624
passenv =
@@ -60,25 +58,19 @@ deps =
6058
[testenv:integration]
6159
envdir = {toxworkdir}/py3
6260
commands =
63-
# These need to be installed in a specific order
64-
pip install urllib3
6561
pip install pylxd
6662
python -m pytest --tb native -ra -v -n auto -k 'integration' -m 'not serial' {posargs}
6763

6864
[testenv:unit]
6965
envdir = {toxworkdir}/py3
7066
commands =
71-
# These need to be installed in a specific order
72-
pip install urllib3
7367
pip install pylxd
7468
python -m pytest --tb native -ra -v -n auto {toxinidir}/tests/unit {posargs}
7569

7670
[testenv:serial]
7771
# tests that can't be run in parallel
7872
envdir = {toxworkdir}/py3
7973
commands =
80-
# These need to be installed in a specific order
81-
pip install urllib3
8274
pip install pylxd
8375
python -m pytest --tb native -ra -v -s {posargs:-m 'serial'}
8476

0 commit comments

Comments
 (0)