Calls pytest directly

This commit is contained in:
Hugo 2017-12-13 15:49:21 +02:00 committed by wiredfool
parent 3c8cfa8197
commit b55ea4014e
3 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ release-test:
python selftest.py
python -m pytest Tests
python setup.py install
python test-installed.py
python -m pytest -qq
check-manifest
pyroma .
viewdoc

View File

@ -33,8 +33,8 @@ Or with coverage::
To run an individual test::
./test-installed.py Tests/test_image.py
pytest Tests/test_image.py
Run all the tests from the root of the Pillow source distribution::
./test-installed.py
pytest

View File

@ -11,4 +11,4 @@ commands =
{envpython} setup.py clean
{envpython} setup.py build_ext --inplace
{envpython} selftest.py
{envpython} test-installed.py --installed
{envpython} -m pytest -qq