Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generate csv file report with pytest

Is it possible somehow generate the test execution report in csv file? I use python, selenium, pytest. Any advise would be appreciated!

like image 945
olia Avatar asked Oct 23 '25 03:10

olia


1 Answers

I have been using pytest-excel to generate xls file report.

Usage:

pip install pytest-excel pytest --excelreport=report.xls

It will generate report.xls excel file.

like image 96
SilentGuy Avatar answered Oct 26 '25 22:10

SilentGuy