adaptavist
This python package provides functionality for Jira Test Management (tm4j).
Table of Contents
Installation
To install adaptavist, you can use the following command(s):
python -m pip install adaptavist
To uninstall adaptavist, you can use the following command:
python -m pip uninstall adaptavist
Getting Started
adaptavist is using the REST API of Adaptavist Test Management for Jira Server (see https://docs.adaptavist.io/tm4j/server/api/) and Jira's internal REST API, both with HTTP Basic authentication.
In order to access Adaptavist/Jira, valid credentials are necessary. In addition, getpass.getuser().lower()
must be a known Jira user as well.
Examples and Features
General Workflow
from adaptavist import Adaptavist
atm = Adaptavist(jira_server, jira_username, jira_password)
test_plan_key = atm.create_test_plan(project_key="TEST", test_plan_name="my test plan")
test_run_key = atm.create_test_run(project_key="TEST", test_run_name="my test cycle", test_cases=["TEST-T1"], test_plan_key=test_plan_key)
atm.edit_test_script_status(test_run_key=test_run_key, test_case_key="TEST-T1", step=1, status="Pass")
atm.edit_test_result_status(test_run_key=test_run_key, test_case_key="TEST-T1", status="Pass")
There's much more inside (like adding attachments, creating folders and environments, cloning test cycles). Additional code examples will follow.