From a664b712ab21c035e53051d9a98dd31fa9945e7e Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Tue, 11 Apr 2023 15:35:07 -0400 Subject: tox.ini: set -vvvv --showlocals for pytest (#2104) Test failures may have truncated assertions using `...` in some output. Increase verbosity and print locals to help with triaging failures caught in CI, particularly as some environments may not be readily testable locally. Signed-off-by: Chris Patterson --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index c0a3b868..d6c44b84 100644 --- a/tox.ini +++ b/tox.ini @@ -141,6 +141,7 @@ commands = deps = -r{toxinidir}/test-requirements.txt commands = {envpython} -m pytest \ + -vvvv --showlocals \ --durations 10 \ -m "not hypothesis_slow" \ {posargs:--cov=cloudinit --cov-branch tests/unittests} -- cgit v1.2.1