Closed
Description
Originally reported by: Scott Reeve (BitBucket: scott_reeve, GitHub: scott_reeve)
The Zutubi Pulse junit post processor requires that the name field in a junit xml file has a value, pytest leaves the field blank.
Easily fixed by adding a value to the name field, line 220 of junitxml.py:
name="",
becomes:
name="pytest"