junit.xml plugin for Kiwi TCMS test case management system
Project description
This package allows you to read junit.xml files and send the results to Kiwi TCMS.
Installation
pip install kiwitcms-junit.xml-plugin
Configuration and environment
Minimal config file ~/.tcms.conf:
[tcms] url = https://tcms.server/xml-rpc/ username = your-username password = your-password
For more info see tcms-api docs.
This plugin is only concerned with parsing the junit.xml format and executing tcms-api functions which will create/reuse test cases, test plans and test runs. tcms-api behavior is controlled via environment variables.
For example this is how our own environment looks like:
#!/bin/bash if [ "$TRAVIS_EVENT_TYPE" == "push" ]; then # same as $TRAVIS_TAG when building tags export TCMS_PRODUCT_VERSION=$TRAVIS_BRANCH fi if [ "$TRAVIS_EVENT_TYPE" == "pull_request" ]; then export TCMS_PRODUCT_VERSION="PR-$TRAVIS_PULL_REQUEST" fi export TCMS_BUILD="$TRAVIS_BUILD_NUMBER-$(echo $TRAVIS_COMMIT | cut -c1-7)"
Further documentation and behavior specification can be found here.
The above configuration creates a separate TestPlan for each branch, see TP-7: [junit.xml] Plan for kiwitcms/junit.xml-plugin (master), a separate TestPlan for each pull request (recording possible multiple test runs) and separate TestPlan and TestRun for each tag on GitHub! tcms-api has default behavior for Travis CI and Jenkins and allows endless configuration via environment variables.
Usage
# define environment variables tcms-junit.xml-plugin /path/to/junit.xml
Changelog
v0.5 (07 January 2020)
Update junitparser from 1.3.4 to 1.41
v0.4 (20 September 2019)
Update junitparser from 1.3.2 to 1.3.4
Support XML files with <testsuites> root tag (Katalon Studio). Fixes Issue #9
v0.3 (10 April 2019)
Works with Kiwi TCMS v6.7 or newer
Uses new names of API methods
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for kiwitcms-junit.xml-plugin-0.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6882d3c21ca9a54d4c11aa27cd3a24d270b610cfc1e2c927686f999202a21dd5 |
|
MD5 | 336f5da8468155d444ae6eede6e17101 |
|
BLAKE2b-256 | cb87e7968a8ff3642be4198eeb152eccc2ca1784b8ebc567e268c8b8eb824932 |
Hashes for kiwitcms_junit.xml_plugin-0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aca0ab86d1142943d09374b78b47a09d4c7193f5b62a1eba6e6a77d1f485b570 |
|
MD5 | a87f1cb3d9e003cc443084ee8e65535a |
|
BLAKE2b-256 | 68882a038fd60425c7bd4425481ea4c83da9014c9b308a062c3379908ec25e9c |