Use "pytest" instead of "py.test" on trial environments

This commit is contained in:
Bruno Oliveira 2016-08-18 08:37:55 -03:00 committed by GitHub
parent 56df9fcc72
commit 0334e75c30
1 changed files with 2 additions and 2 deletions

View File

@ -82,12 +82,12 @@ commands=
[testenv:py27-trial]
deps=twisted
commands=
py.test -ra {posargs:testing/test_unittest.py}
pytest -ra {posargs:testing/test_unittest.py}
[testenv:py35-trial]
deps={[testenv:py27-trial]deps}
commands=
py.test -ra {posargs:testing/test_unittest.py}
pytest -ra {posargs:testing/test_unittest.py}
[testenv:doctest]
commands=pytest --doctest-modules _pytest