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,8 +19,6 @@ filterwarnings =
1919[testenv]
2020usedevelop =True
2121commands =
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}
2624passenv =
@@ -60,25 +58,19 @@ deps =
6058[testenv:integration]
6159envdir = {toxworkdir}/py3
6260commands =
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]
6965envdir = {toxworkdir}/py3
7066commands =
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
7872envdir = {toxworkdir}/py3
7973commands =
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
You can’t perform that action at this time.
0 commit comments