allure-python
allure-python copied to clipboard
Allure integrations for Python test frameworks
[//]: # ( . Note: for support questions, please use Stackoverflow or Gitter**. . This repository's issues are reserved for feature requests and bug reports. . . In case of...
code: `import pytest @pytest.fixture(scope="function", autouse=True) def set_up(): print("Test set up start") raise Exception("set up failed") yield print("Test set up finish") @pytest.fixture(scope="class", autouse=True) def tear_down(): print("Test tear down start") yield raise...
### I'm submitting a ... - [ ] bug report - [x] feature request - [ ] support request => Please do not submit support request here, see note at...
[//]: # ( . Note: for support questions, please use Stackoverflow or Gitter**. . This repository's issues are reserved for feature requests and bug reports. . . In case of...
Stack: python, pytest, selenium. To parametrize tests I use **pytest_generate_tests**: `metafunc.parametrize(fixture, test_data.values(), ids=[key for key, value in test_data.items()])` In allure test looks like this:  But in IDE (Pycharm) it...
#### I'm submitting a ... - [ ] bug report - [x] feature request - [ ] support request => Please do not submit support request here, see note at...
[//]: # ( . Note: for support questions, please use Stackoverflow or Gitter**. . This repository's issues are reserved for feature requests and bug reports. . . In case of...
### Context [//]: # ( Describe the problem or feature in addition to a link to the issues ) Currently allure report for the pytest-bdd framework doesn't include logs, stdout...
Currently, we don\`t support running allure-python in an async function (e.g. through asyncio event loop or a similar coroutine execution engine). This is important, because 1. Async-based frameworks and libraries...
[//]: # ( . Note: for support questions, please use Stackoverflow or Gitter**. . This repository's issues are reserved for feature requests and bug reports. . . In case of...