Artem Ryabkov

Results 31 comments of Artem Ryabkov

> Hi, I have defined screenshots_list as global list variable in function called **takeScreenshot()** and try to access same list variable in t**estResultPngToPdf()**. and when i print the length of...

@stevenxuwoss Can you provide some simple code to reproduce issue?

@eg-b you can do this ```python @pytest.mark.parametrize('id', [1, 2]) @allure.title('title with {id}') def test_test(id): with allure.step('test step'): pass ``` and report will look like ![image](https://user-images.githubusercontent.com/2121715/101211368-263e4780-3688-11eb-8925-20cf6921c5a5.png)

@eg-b made [PR](https://github.com/allure-framework/allure-python/pull/532) for that change, need @sseliverstov to review and check if these changes necessary

Tried this code, working as intended :thinking: ```python import allure import unittest class Test(unittest.TestCase): @classmethod def setUpClass(cls): pass def setUp(self): pass @allure.title('Titled test - test') def test_test(self): pass ```

Where did you get allure? ![image](https://user-images.githubusercontent.com/2121715/125321885-d0303180-e345-11eb-8ea9-74541795d633.png) This part is weird for me, looks like it linked to wrong binary file Also ![image](https://user-images.githubusercontent.com/2121715/125321984-eb02a600-e345-11eb-88af-6c0b0b5309f6.png) You using absolute path here? It's not a...

> I have used this command to install allure https://pypi.org/project/allure-pytest/ You installed pytest adapter For allure report generation you need to install allure from its repo https://github.com/allure-framework/allure2/releases Then, if you...

> pytest adapter could be installed with this command https://pypi.org/project/pytest-allure-adaptor/ which I have not used Thats deprecated one You installed correct one for pytest, but you also need to install...

> it is installed, how should I `add allure binary into your path`? Can you just copy paste that quote into google? > There is nothing about binary in doc...

* Download last one https://github.com/allure-framework/allure2/releases for your system * Install/unpack it * If unpack option choosen add allure folder into your path * call allure --version and check version is...