Merge pull request #975 from micw523/patch-1

Update py.test to pytest
This commit is contained in:
Kubernetes Prow Robot 2019-10-08 17:55:50 -07:00 committed by GitHub
commit 2dfb303553
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 =