I want to create links with name and links for the item.
Example in reports I have link name - Task 55188 and this link redirects me to 'http://tfs.com/tfs/company/rnd/QA/_testManagement?planId=41890&suiteId=55188&_a=tests'
But how I create this in python code?
With Decorators
Some allure-python integrations allow setting a link pattern with a cmd line switch. For example:
allure-pytest:
allure-behave:
When you set a link pattern, you don't need to create your own
allure_wrapper.py
like in Viktoriia's answer and can use@allure.link:55188
directly.With Dynamic
In addition to the decorator approach above, a
Dynamic
class is available to dynamically add links to the report at runtime. For example:Some integrations may not support dynamic linking and will do nothing when
allure.dynamic.link
is called. For example, I had to add support for allure-behave by implementing the relevant allure hooks in a PR.We use dynamic linking to conditionally add Jira defect links for failing tests. When a test fails, we create a Jira defect with a tag specific to the test. The next time that test fails, it queries the Jira REST API to find all issues matching the tag and links them. This way we can add/remove test links from Jira and avoid fumbling around with decorators in the test code.