RedHatQE / polarize

GNU General Public License v3.0
2 stars 2 forks source link

Add a new configuration option to set the TestRun type #53

Closed rarebreed closed 7 years ago

rarebreed commented 7 years ago

There is a column called Type for a TestRun. In the xml that gets posted to the XUnit Importer endpoint, it can take a value like this:

<property name="polarion-testrun-type-id " val="..."/>

It looks like from Polarion, it's a drop down box with three choices, so this should probably be an enum of strings. Since these are Polarion properties, the code needs to add a new type TESTRUN_TYPE into the Opts type, and add it to any method that has a switch on the property types

rarebreed commented 7 years ago

Looks like this property already exists in the XUnit Importer type, so that means I need to create a CLI arg for this, and then inject it into the xunit file

rarebreed commented 7 years ago

Fixed in 28038bc