mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-27 08:30:05 +03:00
Increase pytest verbosity
This commit is contained in:
parent
1788ab7887
commit
bf37fffa98
|
@ -1,3 +1,3 @@
|
|||
python.exe -c "from PIL import Image"
|
||||
IF ERRORLEVEL 1 EXIT /B
|
||||
python.exe -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests
|
||||
python.exe -bb -m pytest -vv -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests
|
||||
|
|
|
@ -4,4 +4,4 @@ set -e
|
|||
|
||||
python3 -c "from PIL import Image"
|
||||
|
||||
python3 -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests $REVERSE
|
||||
python3 -bb -m pytest -vv -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests $REVERSE
|
||||
|
|
4
.github/workflows/wheels-test.ps1
vendored
4
.github/workflows/wheels-test.ps1
vendored
|
@ -23,7 +23,7 @@ cd $pillow
|
|||
if (!$?) { exit $LASTEXITCODE }
|
||||
& $venv\Scripts\$python selftest.py
|
||||
if (!$?) { exit $LASTEXITCODE }
|
||||
& $venv\Scripts\$python -m pytest -vx Tests\check_wheel.py
|
||||
& $venv\Scripts\$python -m pytest -vv -x Tests\check_wheel.py
|
||||
if (!$?) { exit $LASTEXITCODE }
|
||||
& $venv\Scripts\$python -m pytest -vx Tests
|
||||
& $venv\Scripts\$python -m pytest -vv -x Tests
|
||||
if (!$?) { exit $LASTEXITCODE }
|
||||
|
|
4
.github/workflows/wheels-test.sh
vendored
4
.github/workflows/wheels-test.sh
vendored
|
@ -35,5 +35,5 @@ fi
|
|||
|
||||
# Runs tests
|
||||
python3 selftest.py
|
||||
python3 -m pytest Tests/check_wheel.py
|
||||
python3 -m pytest
|
||||
python3 -m pytest -vv Tests/check_wheel.py
|
||||
python3 -m pytest -vv
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -12,7 +12,7 @@ extras =
|
|||
tests
|
||||
commands =
|
||||
{envpython} selftest.py
|
||||
{envpython} -m pytest -W always {posargs}
|
||||
{envpython} -m pytest -vv -W always {posargs}
|
||||
|
||||
[testenv:lint]
|
||||
skip_install = true
|
||||
|
|
|
@ -24,6 +24,6 @@ cd ..
|
|||
%PYTHON%\python.exe -m pip install -v -C raqm=vendor -C fribidi=vendor .
|
||||
path C:\Pillow\winbuild\build\bin;%PATH%
|
||||
%PYTHON%\python.exe selftest.py
|
||||
%PYTHON%\python.exe -m pytest -vx --cov PIL --cov Tests --cov-report term --cov-report xml Tests
|
||||
%PYTHON%\python.exe -m pytest -vv -x --cov PIL --cov Tests --cov-report term --cov-report xml Tests
|
||||
%PYTHON%\python.exe -m pip wheel -v -C raqm=vendor -C fribidi=vendor .
|
||||
```
|
||||
|
|
|
@ -124,5 +124,5 @@ Here's an example script to build on Windows::
|
|||
%PYTHON%\python.exe -m pip install -v -C raqm=vendor -C fribidi=vendor .
|
||||
path C:\Pillow\winbuild\build\bin;%PATH%
|
||||
%PYTHON%\python.exe selftest.py
|
||||
%PYTHON%\python.exe -m pytest -vx --cov PIL --cov Tests --cov-report term --cov-report xml Tests
|
||||
%PYTHON%\python.exe -m pytest -vv -x --cov PIL --cov Tests --cov-report term --cov-report xml Tests
|
||||
%PYTHON%\python.exe -m pip wheel -v -C raqm=vendor -C fribidi=vendor .
|
||||
|
|
Loading…
Reference in New Issue
Block a user