Ensure xml object is viable before testing family type

This commit is contained in:
Joseph Hunkeler 2019-01-14 14:38:58 -05:00
parent bcacc40775
commit 8967976443
No known key found for this signature in database
GPG Key ID: 5C1D2774D4689768
1 changed files with 1 additions and 1 deletions

View File

@ -311,7 +311,7 @@ def record_xml_attribute(request):
attr_func = add_attr_noop
xml = getattr(request.config, "_xml", None)
if xml.family != "xunit1":
if xml is not None and xml.family != "xunit1":
request.node.warn(
PytestWarning(
"record_xml_attribute is incompatible with junit_family: "