wrktools-xlsx

XLSX spreadsheet reports for wrktoolbox.


Keywords
wrk, runner, benchmarks, load, performance, tests, xlsx, results
License
MIT
Install
pip install wrktools-xlsx==0.0.5

Documentation

Build status pypi Test coverage

wrktoolbox-xlsx

XLSX spreadsheet reports for wrktoolbox.

pip install wrktools-xlsx

Example configuration

YAML

# importers read benchmarks results
importers:
  - type: json
    root_folder: data/results

# reports generation supports plugins, like benchmarks logic
plugins:
  - wrktoolboxxlsx.xlsx

# writers write reports
writers:
  - type: xlsx
    file_name: example.xlsx

JSON

{
  "importers": [
    {
      type: "json",
      root_folder: "data/results"
    }
  ],
  
  "plugins": ["wrktoolboxxlsx.xlsx"],
  
  "writers": [
    {
      type: "xlsx",
      file_name: "example.xlsx"
    }
  ],
}

Usage

wrktoolbox reports --settings configuration.yaml