From 7a5e732e8a964c4b8a2ae6c74a466d5ddeb895b4 Mon Sep 17 00:00:00 2001 From: xqt Date: Mon, 4 Mar 2024 07:27:50 +0100 Subject: [PATCH] [tests] add more verbosity with pytest Change-Id: I3afb4e833eb14cfed46bef132cea783971975a7d --- .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 5518b66b95..ad5f3a7d04 100644 --- a/.github/workflows/pywikibot-ci.yml +++ b/.github/workflows/pywikibot-ci.yml @@ -132,7 +132,7 @@ jobs: if [ ${{matrix.site || 0}} != 'wikipedia:test' ]; then coverage run -m unittest discover -vv -p \"*_tests.py\"; else - pytest --cov=.; + pytest -s -r A -a --cov=.; fi - name: Show coverage statistics