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
# create a new instance
atm = Adaptavist(jira_server, jira_username, jira_password)
# create a test plan
test_plan_key = atm.create_test_plan(project_key="TEST", test_plan_name="my test plan")
# create a test cycle (formerly test run) with a set of test cases and add it to 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)
# as test cycle creation also creates/initializes test results, we can just edit these
atm.edit_test_script_status(test_run_key=test_run_key, test_case_key="TEST-T1", step=1, status="Pass")
# (optional) edit/overwrite the overall execution status of the test case (by default this is done automatically when editing status of a single step)
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.
Release files for adaptavist 2.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| adaptavist-2.4.0.tar.gz | 27.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| adaptavist-2.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 41.1 kB
Release files / adaptavist-2.4.0.tar.gz
| Download URL | adaptavist-2.4.0.tar.gz |
|---|---|
| Size | 27.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
6cee7c5d5a2a37be58c10b44a91b3c22a1801fef198354364fc77e41478438bd
|
|
BLAKE2b-256 checksum How to use checksums |
4cdde5336896b1071ceeb57acdd0c8dbd465e5f40e8ca84015a4a6fde9182ebc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.18
|
Release files / adaptavist-2.4.0-py3-none-any.whl
| Download URL | adaptavist-2.4.0-py3-none-any.whl |
|---|---|
| Size | 13.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
adb7c3b452943e772b32663a847475ed086c2b0d09949a7b13767daf9403abf4
|
|
BLAKE2b-256 checksum How to use checksums |
135e61af59943c09717de8e8899409cf7bf59d1c77dd57b10380e9c2a560cff1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.18
|