我想将我的 pytest 基准测试结果存储到一个 excel 文件中,有人知道该怎么做吗?
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
如果我使用 --benchmark-autosave 它以 json 格式存储结果,我想以 excel 或 csv 格式存储结果