Change py.test to pytest

This commit is contained in:
Xianglong Wang 2019-10-08 14:42:55 -05:00
parent 2b3fe30d24
commit fa12fea2e4

10
tox.ini
View File

@ -9,7 +9,7 @@ deps = -r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands =
python -V
py.test -vvv -s --ignore=kubernetes/e2e_test
pytest -vvv -s --ignore=kubernetes/e2e_test
[testenv:docs]
commands =
@ -22,22 +22,22 @@ commands =
[testenv:py27-functional]
commands =
python -V
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
[testenv:py35-functional]
commands =
python -V
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
[testenv:py36-functional]
commands =
python -V
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
[testenv:py37-functional]
commands =
python -V
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
[testenv:coverage]
commands =