From 5ed63fd958b69e0ee881f55adc109b7b8a6a5a60 Mon Sep 17 00:00:00 2001 From: xqt Date: Sat, 30 Nov 2024 17:07:22 +0100 Subject: [PATCH] Tests: no verbosity with pytest verbosity flag leads replacebot_tests and ui_tests to fail Bug: T381199 Change-Id: Ic39053f9a6a4b625acf8a216027993c4fea6f216 --- .github/workflows/pywikibot-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pywikibot-ci.yml b/.github/workflows/pywikibot-ci.yml index 1c50929f05..7aae45c79e 100644 --- a/.github/workflows/pywikibot-ci.yml +++ b/.github/workflows/pywikibot-ci.yml @@ -140,7 +140,7 @@ jobs: if [ ${{matrix.site || 0}} != 'wikisource:zh' ]; then coverage run -m unittest discover -vv -p \"*_tests.py\"; else - pytest -v --cov=.; + pytest --cov=.; fi - name: Show coverage statistics