add pytest -ra into setup.cfg

This commit is contained in:
nulano 2020-06-15 14:15:53 +02:00
parent e2e8db4fe8
commit 703a9a0eb5
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
set -e
python -m pytest -v -x -ra -W always --cov PIL --cov Tests --cov-report term Tests
python -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term Tests
# Docs
if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ] && [ "$TRAVIS_CPU_ARCH" == "amd64" ]; then

View File

@ -113,7 +113,7 @@ jobs:
- name: Test Pillow
run: |
path %GITHUB_WORKSPACE%\\winbuild\\build\\bin;%PATH%
python.exe -m pytest -vxra -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests
python.exe -m pytest -vx -W always --cov PIL --cov Tests --cov-report term --cov-report xml Tests
shell: cmd
- name: Prepare to upload errors

View File

@ -9,5 +9,5 @@ line_length = 88
multi_line_output = 3
[tool:pytest]
addopts = -rs
addopts = -ra
testpaths = Tests