[cvp-spt] add live logs to stdout

Change-Id: Ifde152b84a503db84b91689bb326cda88455a485
Closes-Bug: #PROD-30541(PROD:30541)
diff --git a/test_set/cvp-sanity/fixtures/base.py b/test_set/cvp-sanity/fixtures/base.py
index d1dbfe5..822d908 100644
--- a/test_set/cvp-sanity/fixtures/base.py
+++ b/test_set/cvp-sanity/fixtures/base.py
@@ -193,7 +193,8 @@
             report_text += template.format(node, *[item.split("=")[1] for item in data])
 
         def write_report():
-            logging.info(report_text)
+            # DO NOT change to logging
+            print(report_text)
         atexit.register(write_report)
         yield
     except Exception as e:
diff --git a/test_set/cvp-spt/pytest.ini b/test_set/cvp-spt/pytest.ini
index 32f15a2..0180774 100644
--- a/test_set/cvp-spt/pytest.ini
+++ b/test_set/cvp-spt/pytest.ini
@@ -1,2 +1,3 @@
 [pytest]
-norecursedirs = venv
\ No newline at end of file
+norecursedirs = venv
+addopts = -vv --tb=short --capture=no
\ No newline at end of file