I want to store my pytest benchmark results into a excel file, anyone knows how to do it?
python
import pytest
import pytest-benchmark
def fun():
print("Defines a function")
test_funct():
result = benchmark.pedantic(fun, args=(,), iterations=1, rounds=10)
assert result == 0
I run above test using command
python3 -m pytest ./filename.py
If I use --benchmark-autosave it stores the result in json format, I want to store the result in excel or csv format