The word and PDF documents generated when using pytest.mark.parametrize are showing only a single test case has run when a parameter has run a test case multiple times. Using @allure.title and @pytest.mark.parametrize together appears to be causing the issue.
For example, if the parametrization runs 1 function 10 times, the web report will show that 10 test cases have run, however the word document will show 1 test case which will be the last test case to run as part of the sequence.
The word and PDF documents generated when using pytest.mark.parametrize are showing only a single test case has run when a parameter has run a test case multiple times. Using @allure.title and @pytest.mark.parametrize together appears to be causing the issue.
For example, if the parametrization runs 1 function 10 times, the web report will show that 10 test cases have run, however the word document will show 1 test case which will be the last test case to run as part of the sequence.