Skip to content

Commit 2dfb303

Browse files
authored
Merge pull request #975 from micw523/patch-1
Update py.test to pytest
2 parents 2b3fe30 + fa12fea commit 2dfb303

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tox.ini

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ deps = -r{toxinidir}/test-requirements.txt
99
-r{toxinidir}/requirements.txt
1010
commands =
1111
python -V
12-
py.test -vvv -s --ignore=kubernetes/e2e_test
12+
pytest -vvv -s --ignore=kubernetes/e2e_test
1313

1414
[testenv:docs]
1515
commands =
@@ -22,22 +22,22 @@ commands =
2222
[testenv:py27-functional]
2323
commands =
2424
python -V
25-
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
25+
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
2626

2727
[testenv:py35-functional]
2828
commands =
2929
python -V
30-
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
30+
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
3131

3232
[testenv:py36-functional]
3333
commands =
3434
python -V
35-
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
35+
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
3636

3737
[testenv:py37-functional]
3838
commands =
3939
python -V
40-
{toxinidir}/scripts/kube-init.sh py.test -vvv -s []
40+
{toxinidir}/scripts/kube-init.sh pytest -vvv -s []
4141

4242
[testenv:coverage]
4343
commands =

0 commit comments

Comments
 (0)