{"id":22770067,"url":"https://github.com/devolo/adaptavist","last_synced_at":"2025-09-05T16:08:52.744Z","repository":{"id":36400698,"uuid":"218737557","full_name":"devolo/adaptavist","owner":"devolo","description":"python package providing functionality for Jira Test Management (tm4j)","archived":false,"fork":false,"pushed_at":"2024-09-30T06:07:50.000Z","size":162,"stargazers_count":8,"open_issues_count":5,"forks_count":11,"subscribers_count":8,"default_branch":"main","last_synced_at":"2024-12-11T15:18:50.782Z","etag":null,"topics":["adaptavist","jira","python","test-automation","tm4j","zaphyr"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devolo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-31T10:11:28.000Z","updated_at":"2024-07-29T12:20:06.000Z","dependencies_parsed_at":"2023-01-17T01:09:18.972Z","dependency_job_id":"6867e07b-c86a-474a-a1d3-5bfa168ceccb","html_url":"https://github.com/devolo/adaptavist","commit_stats":{"total_commits":96,"total_committers":11,"mean_commits":8.727272727272727,"dds":0.5104166666666667,"last_synced_commit":"a4a5e8d8db213d702f742f905b564591aa8cbe27"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devolo%2Fadaptavist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devolo%2Fadaptavist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devolo%2Fadaptavist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devolo%2Fadaptavist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devolo","download_url":"https://codeload.github.com/devolo/adaptavist/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230340130,"owners_count":18211162,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adaptavist","jira","python","test-automation","tm4j","zaphyr"],"created_at":"2024-12-11T15:19:05.833Z","updated_at":"2024-12-18T21:08:40.965Z","avatar_url":"https://github.com/devolo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# adaptavist\n\nThis python package provides functionality for Jira Test Management ([tm4j](https://www.adaptavist.com/doco/display/KT/Managing+Tests+From+the+REST+API)).\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Getting Started](#getting-started)\n- [Examples and Features](#examples-and-features)\n- [General Workflow](#general-workflow)\n\n## Installation\n\nTo install adaptavist, you can use the following command(s):\n\n```bash\npython -m pip install adaptavist\n```\n\nTo uninstall adaptavist, you can use the following command:\n\n```bash\npython -m pip uninstall adaptavist\n```\n\n## Getting Started\n\nadaptavist 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.\n\nIn order to access Adaptavist/Jira, valid credentials are necessary. In addition, `getpass.getuser().lower()` must be a known Jira user as well.\n\n## Examples and Features\n\n### General Workflow\n\n   ```python\n    from adaptavist import Adaptavist\n\n    # create a new instance\n    atm = Adaptavist(jira_server, jira_username, jira_password)\n\n    # create a test plan\n    test_plan_key = atm.create_test_plan(project_key=\"TEST\", test_plan_name=\"my test plan\")\n\n    # create a test cycle (formerly test run) with a set of test cases and add it to test plan\n    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)\n\n    # as test cycle creation also creates/initializes test results, we can just edit these\n    atm.edit_test_script_status(test_run_key=test_run_key, test_case_key=\"TEST-T1\", step=1, status=\"Pass\")\n\n    # (optional) edit/overwrite the overall execution status of the test case (by default this is done automatically when editing status of a single step)\n    atm.edit_test_result_status(test_run_key=test_run_key, test_case_key=\"TEST-T1\", status=\"Pass\")\n\n   ```\n\nThere's much more inside (like adding attachments, creating folders and environments, cloning test cycles). Additional code examples will follow.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevolo%2Fadaptavist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevolo%2Fadaptavist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevolo%2Fadaptavist/lists"}