mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-23 06:29:48 +03:00
Increase pytest verbosity (#9040)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
This commit is contained in:
parent
3a66b1d291
commit
69c0c422c8
|
@ -1,3 +1,3 @@
|
||||||
python.exe -c "from PIL import Image"
|
python.exe -c "from PIL import Image"
|
||||||
IF ERRORLEVEL 1 EXIT /B
|
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 -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 }
|
if (!$?) { exit $LASTEXITCODE }
|
||||||
& $venv\Scripts\$python selftest.py
|
& $venv\Scripts\$python selftest.py
|
||||||
if (!$?) { exit $LASTEXITCODE }
|
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 }
|
if (!$?) { exit $LASTEXITCODE }
|
||||||
& $venv\Scripts\$python -m pytest -vx Tests
|
& $venv\Scripts\$python -m pytest -vv -x Tests
|
||||||
if (!$?) { exit $LASTEXITCODE }
|
if (!$?) { exit $LASTEXITCODE }
|
||||||
|
|
4
.github/workflows/wheels-test.sh
vendored
4
.github/workflows/wheels-test.sh
vendored
|
@ -35,5 +35,5 @@ fi
|
||||||
|
|
||||||
# Runs tests
|
# Runs tests
|
||||||
python3 selftest.py
|
python3 selftest.py
|
||||||
python3 -m pytest Tests/check_wheel.py
|
python3 -m pytest -vv -x Tests/check_wheel.py
|
||||||
python3 -m pytest
|
python3 -m pytest -vv -x
|
||||||
|
|
|
@ -24,6 +24,6 @@ cd ..
|
||||||
%PYTHON%\python.exe -m pip install -v -C raqm=vendor -C fribidi=vendor .
|
%PYTHON%\python.exe -m pip install -v -C raqm=vendor -C fribidi=vendor .
|
||||||
path C:\Pillow\winbuild\build\bin;%PATH%
|
path C:\Pillow\winbuild\build\bin;%PATH%
|
||||||
%PYTHON%\python.exe selftest.py
|
%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 .
|
%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 .
|
%PYTHON%\python.exe -m pip install -v -C raqm=vendor -C fribidi=vendor .
|
||||||
path C:\Pillow\winbuild\build\bin;%PATH%
|
path C:\Pillow\winbuild\build\bin;%PATH%
|
||||||
%PYTHON%\python.exe selftest.py
|
%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 .
|
%PYTHON%\python.exe -m pip wheel -v -C raqm=vendor -C fribidi=vendor .
|
||||||
|
|
Loading…
Reference in New Issue
Block a user