Add support to record custom properties on xml output

This commit is contained in:
David Diaz
2015-08-19 15:36:42 -06:00
parent 37ed391cc2
commit 24212fd97f
3 changed files with 40 additions and 1 deletions
+9
View File
@@ -153,6 +153,15 @@ integration servers, use this invocation::
to create an XML file at ``path``.
If you want to log additional information for a test, you can use
record_property("key", value)::
import pytest
def test_function():
...
pytest.record_property("example_key", 1)
...
Creating resultlog format files
----------------------------------------------------