Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

junitxml: add properties node in testsuite level #1454

Merged

Commits on Mar 16, 2016

  1. junitxml: add properties node in testsuite level

    The commit allow users to add a properties node in testsuite level see
    example below:
    
    <testsuite errors="0" failures="0" name="pytest" skips="1" tests="1"
    time="11.824">
      <properties>
        <property name="ARCH" value="PPC"/>
        <property name="OS" value="RHEL 7.2"/>
        <property name="TestPlanURL" value="https://url.."/>
        <property name="Automated" value="True"/>
      </properties>
      <testcase classname="git.....>
      </testcase>
    </testsuite>
    
    The current situation is that properties node can be added to every
    testcase node. However, sometimes we need some global properties that
    applies to all testcases and give better description for the testsuite
    itself.
    tareqalayan committed Mar 16, 2016
    Configuration menu
    Copy the full SHA
    fa6acdc View commit details
    Browse the repository at this point in the history