Alexander Miroshnichenko

Results 3 comments of Alexander Miroshnichenko

If set object in label, test its ok, but report generation is failing ```shell Could not read test result file /var/lib/jenkins/workspace/test/allure-results/d7566060-f94f-4f90-9edf-760ce70d8154-result.json 13:29:50 GMT+03:00 com.fasterxml.jackson.databind.JsonMappingException: Unexpected end-of-input within/between Object entries 13:29:50...

I think this workaround with "dynamic" title in test body it will help you ```python @pytest.mark.parametrize('input, id_value', [(1, 'int'), ('1', 'str')], ids=['int', 'str']) def test_1(input, id_value): allure.dynamic.title(f'bla-bla [{id_value}]') with allure.step('test'):...

My opinion is not a bug, `allure.title` changes title as we specified.