Basically i have scenario where i need to run set of parallel pytests and another set of serial pytests separately. Each will generate separate pytest-html reports. But i am looking for solution to combine both the reports generated. Eg: py.test -n auto -m "not serial" --dist=loadfile --html=report1.html py.test -n auto -m "serial" --dist=loadfile --html=report2.html
Is there a way to combine report1.html and report2.html and generate single html report ?