Aleksandr Brodin
Aleksandr Brodin
### Context If a fixture is called dynamically via _getfixturevalue_, it is not added to the report. The problem is that there is no reference to the test in which...
### Context "@allure.tag", unlike "@pytest.mark" markers, do not require additional definition and can be assigned several pieces at once. But you can't filter tests by these tags. Added a cli...
There is a task to track exceptions when setting up and finalizing fixtures. When setting up, an exception can be obtained in the pytest_fixture_setup hook: ```python @pytest.hookimpl(hookwrapper=True) def pytest_fixture_setup(fixturedef): result...
Сontinue #11976 The solution from #11976 did not solve the problem with sorting tests with multiple parameters Tests ```python import pytest @pytest.mark.parametrize('proto', ['serial', 'telnet', 'ssh'], scope='class') @pytest.mark.parametrize('unit', [1, 2, 3],...
solution #12163