Use logger in favor over print statment. This is explicitly supported and encuraged by pytest, which also allows for capturing logs separate from stdout calls, which is handy for when e.g. lix code calls out to stdout to keep those differentiated from test output Change-Id: Ib88565a1663da3b77ca6b95f8edf644eafb4a99d
7 lines
198 B
Python
7 lines
198 B
Python
pytest_plugins = (
|
|
"functional2.testlib.fixtures.file_helper",
|
|
"functional2.testlib.fixtures.formatter",
|
|
"functional2.testlib.fixtures.logger",
|
|
"functional2.testlib.fixtures.nix",
|
|
)
|