We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa4fe00 commit 1352cccCopy full SHA for 1352ccc
tests/conftest.py
@@ -0,0 +1,14 @@
1
+import os
2
+
3
4
+def pytest_report_teststatus(report, config):
5
+ if os.getenv("CDP_DEBUG"):
6
+ if report.when == "call":
7
+ # Add newlines to separate test results
8
+ category = report.outcome
9
+ shortletter = "\n\n" # dot / F / X / etc.
10
+ verbose = "\n\n" # ("PASSED", "FAILED", ...)
11
12
+ return category, shortletter, verbose
13
14
+ return None
0 commit comments