SatelliteQE / betelgeuse

Betelgeuse reads standard Python test cases and offers tools to interact with Polarion.
GNU General Public License v3.0
12 stars 20 forks source link

Added option to set polarion-group-id property for test-runs #125

Closed ntkathole closed 5 years ago

ntkathole commented 5 years ago
# betelgeuse test-run --help | grep test-run-group-id
 --test-run-group-id TEXT        Test Run GROUP ID to be created/updated.
# betelgeuse test-run --test-run-id "abc" --test-run-group-id "groupID" --custom-fields isautomated=true --custom-fields arch=x8664 --custom-fields variant=server abc.xml /tests/foreman/ rhsat6 RHSAT xyz.xml
<testsuites>
    <properties>
         <property name="polarion-group-id" value="groupID" />
    </properties>
    <testsuite>
         <testcase>
         </testcase>
    </testsuite>
</testsuites>
codecov[bot] commented 5 years ago

Codecov Report

Merging #125 into master will increase coverage by 0.07%. The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master     #125      +/-   ##
==========================================
+ Coverage   88.65%   88.72%   +0.07%     
==========================================
  Files           5        5              
  Lines         476      479       +3     
==========================================
+ Hits          422      425       +3     
  Misses         54       54
Impacted Files Coverage Δ
betelgeuse/__init__.py 87% <100%> (+0.14%) :arrow_up:

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update e050a2e...eaaefbb. Read the comment docs.

ntkathole commented 5 years ago

@elyezer Updated. Thanks!