Artem Ryabkov

Results 25 comments of Artem Ryabkov

In my use case i want this for all torrents that auto added to deluge :(

Happens for me too, checked logs and doesn't see anything suspicious Also, android 8.0 works fine

Got this in adb logcat on every crash ![image](https://user-images.githubusercontent.com/2121715/48569426-16296300-e91b-11e8-8b18-cca336c5c2bf.png)

@iamdbychkov @flaminestone tested it now test_func_1.py: ```python import allure pytestmark = [ allure.parent_suite('Module-1'), allure.suite('Test function-1 behaviour'), ] def test_func_1(): pass ``` test_func_2.py: ```python import allure pytestmark = [ allure.parent_suite('Module-1'), allure.suite('Test...

Checked out this issue on: Python 3.9.0+, pytest-6.1.2, allure-pytest-2.8.22, allure 2.13.7 conftest: ```python test_data = {"key1": "value1", "key2": "value2"} def pytest_generate_tests(metafunc): if 'fix' in metafunc.fixturenames: metafunc.parametrize('fix', test_data.values(), ids=[key for key,...

https://github.com/allure-framework/allure-python/blob/master/allure-pytest/examples/attachment/attachment.rst

Is custom labels what are you looking for? https://github.com/allure-framework/allure-python/blob/master/allure-pytest/examples/label/custom/custom_label.rst

> @rad96 could you give more example for it? if add a lable like @allure.label("owner", "andy") how to run with it like pytest --allure-epics=epic? --allure-owner=andy? any it will show in...

Make a bug issue in TestOps official support: https://support.qameta.io/

```python import schemathesis import allure schema = schemathesis.from_uri("https://petstore.swagger.io/v2/swagger.json") # @allure.story("Static story") @schema.parametrize() def test_api(case): allure.dynamic.title(str(case.method) + ": " + str(case.endpoint.path)) allure.dynamic.story(case.endpoint.path) # allure.dynamic.title(str(case.method) + ": " + str(case.endpoint.path)) with allure.step("Endpoint:...