tcms.issuetracker.azure_boards module¶
-
class
tcms.issuetracker.azure_boards.
AzureBoards
(bug_system, request)[source]¶ Bases:
tcms.issuetracker.base.IssueTrackerType
Support for AzureBoards. Requires:
Base_url: URL to AzureBoards Project - e.g. https://dev.azure.com/{organization}/{project} Api_password: AzureBoards API token - requires “Read & Write” permission Note
You can leave the
api_url
andapi_username
fields blank because the integration code doesn’t use them!-
is_adding_testcase_to_issue_disabled
()[source]¶ When is linking a TC to a Bug report disabled? Usually when not all of the required credentials are provided.
Returns: True if bug system api url, username and password are provided Return type: bool
-
post_comment
(execution, bug_id)[source]¶ Parameters: - execution (
tcms.testruns.models.TestExecution
) – TestExecution object - bug_id (int or str) – Unique defect identifier in the system. Usually an int.
- execution (
-