Skip to content

Commit 69c0c42

Browse files
radarherehugovk
andauthored
Increase pytest verbosity (#9040)
Co-authored-by: Hugo van Kemenade <[email protected]>
1 parent 3a66b1d commit 69c0c42

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.ci/test.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
python.exe -c "from PIL import Image"
22
IF ERRORLEVEL 1 EXIT /B
3-
python.exe -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests
3+
python.exe -bb -m pytest -vv -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests

.ci/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -e
44

55
python3 -c "from PIL import Image"
66

7-
python3 -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests $REVERSE
7+
python3 -bb -m pytest -vv -x -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests $REVERSE

.github/workflows/wheels-test.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cd $pillow
2323
if (!$?) { exit $LASTEXITCODE }
2424
& $venv\Scripts\$python selftest.py
2525
if (!$?) { exit $LASTEXITCODE }
26-
& $venv\Scripts\$python -m pytest -vx Tests\check_wheel.py
26+
& $venv\Scripts\$python -m pytest -vv -x Tests\check_wheel.py
2727
if (!$?) { exit $LASTEXITCODE }
28-
& $venv\Scripts\$python -m pytest -vx Tests
28+
& $venv\Scripts\$python -m pytest -vv -x Tests
2929
if (!$?) { exit $LASTEXITCODE }

.github/workflows/wheels-test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ fi
3535

3636
# Runs tests
3737
python3 selftest.py
38-
python3 -m pytest Tests/check_wheel.py
39-
python3 -m pytest
38+
python3 -m pytest -vv -x Tests/check_wheel.py
39+
python3 -m pytest -vv -x

winbuild/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ cd ..
2424
%PYTHON%\python.exe -m pip install -v -C raqm=vendor -C fribidi=vendor .
2525
path C:\Pillow\winbuild\build\bin;%PATH%
2626
%PYTHON%\python.exe selftest.py
27-
%PYTHON%\python.exe -m pytest -vx --cov PIL --cov Tests --cov-report term --cov-report xml Tests
27+
%PYTHON%\python.exe -m pytest -vv -x --cov PIL --cov Tests --cov-report term --cov-report xml Tests
2828
%PYTHON%\python.exe -m pip wheel -v -C raqm=vendor -C fribidi=vendor .
2929
```

winbuild/build.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ Here's an example script to build on Windows::
124124
%PYTHON%\python.exe -m pip install -v -C raqm=vendor -C fribidi=vendor .
125125
path C:\Pillow\winbuild\build\bin;%PATH%
126126
%PYTHON%\python.exe selftest.py
127-
%PYTHON%\python.exe -m pytest -vx --cov PIL --cov Tests --cov-report term --cov-report xml Tests
127+
%PYTHON%\python.exe -m pytest -vv -x --cov PIL --cov Tests --cov-report term --cov-report xml Tests
128128
%PYTHON%\python.exe -m pip wheel -v -C raqm=vendor -C fribidi=vendor .

0 commit comments

Comments
 (0)