Use "pytest" instead of "py.test" on trial environments
This commit is contained in:
parent
56df9fcc72
commit
0334e75c30
4
tox.ini
4
tox.ini
|
@ -82,12 +82,12 @@ commands=
|
||||||
[testenv:py27-trial]
|
[testenv:py27-trial]
|
||||||
deps=twisted
|
deps=twisted
|
||||||
commands=
|
commands=
|
||||||
py.test -ra {posargs:testing/test_unittest.py}
|
pytest -ra {posargs:testing/test_unittest.py}
|
||||||
|
|
||||||
[testenv:py35-trial]
|
[testenv:py35-trial]
|
||||||
deps={[testenv:py27-trial]deps}
|
deps={[testenv:py27-trial]deps}
|
||||||
commands=
|
commands=
|
||||||
py.test -ra {posargs:testing/test_unittest.py}
|
pytest -ra {posargs:testing/test_unittest.py}
|
||||||
|
|
||||||
[testenv:doctest]
|
[testenv:doctest]
|
||||||
commands=pytest --doctest-modules _pytest
|
commands=pytest --doctest-modules _pytest
|
||||||
|
|
Loading…
Reference in New Issue