allure-python icon indicating copy to clipboard operation
allure-python copied to clipboard

Allure integrations for Python test frameworks

Results 208 allure-python issues
Sort by recently updated
recently updated
newest added

Problem: I'm running script using pabot and listener allure-robotframework. The problem is when the current steps failed, allure didn't stop at this step, but still log all the rest steps...

theme:robotframework

any possible to add method to modify step status, such as pass, fail, skip ?

### Context When do `allure serve` on the next generated report https://gist.github.com/elchupanebrej/4b1d78096ac181ef56edd9b1a1549f57 Allure fails: https://gist.github.com/elchupanebrej/e753d7d1005c811ff616417ae625df51 [//]: # ( Describe the problem or feature in addition to a link to the...

theme:pytest-bdd

[//]: # ( . Note: for support questions, please use Stackoverflow or Gitter**. . This repository's issues are reserved for feature requests and bug reports. . . In case of...

This fixes #636 by making each scenario outline param a separate param in the generated allure JSON. ### Context When using a `Scenario Outline` and pytest-bdd the parameters passed to...

theme:pytest-bdd

### Context If you have custom converter which makes an array from parameter string from feature file, allure will throw below exception upon report generation, hence we have to make...

theme:pytest-bdd

`allure-pytest==2.9.45` Is there an ability to customize test's history info displayed ? https://i.stack.imgur.com/aHwRK.png I'd like to add there additional fields like environment, browser or whatever

Hello. I'm using Python Behave and would like to add a description text in the before_scenario func. I write: allure.description('This is my description'). But this text is not added to...

PNG attachment not displayed in allure reports - allure behave import allure from allure_commons.types import AttachmentType allure.attach("Capture.PNG", name="ScreenshotPNG", attachment_type=AttachmentType.PNG) ![One](https://user-images.githubusercontent.com/81166452/157610345-4c6e36c9-c241-467e-9f3d-8c2a88466507.PNG) Screenshot not displayed in allure reports environment: - allure behave...

With the usage provided in [display_name.rst](https://github.com/allure-framework/allure-python/blob/master/allure-pytest/examples/display_name/display_name.rst), I am going to use an **AttrDict class** to make the title of my tests more flexible. As the following code shows, `{_param.value}` works...