From 4a5bd47c8a12ad1a33d507df9ea3c4ff1cb167ed Mon Sep 17 00:00:00 2001 From: Joe LeVeque Date: Thu, 11 Mar 2021 18:03:36 -0800 Subject: [PATCH] [pytest] Increase verbosity (#1451) Increase verbosity of pytest to allow for full, non-truncated error messages to appear in CI unit test results in order to help facilitate troubleshooting of unit test failures. --- pytest.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 836f5437df..4fb7432d5d 100644 --- a/pytest.ini +++ b/pytest.ini @@ -1,2 +1,2 @@ [pytest] -addopts = --cov-config=.coveragerc --cov --cov-report html --cov-report term --cov-report xml --junitxml=test-results.xml -v +addopts = --cov-config=.coveragerc --cov --cov-report html --cov-report term --cov-report xml --junitxml=test-results.xml -vv