charms.benchmark

Library to aid in the creation of benchmark actions in Juju


License
Other
Install
pip install charms.benchmark==1.0.5

Documentation

Build Status Coverage Status

charms.benchmark

charms.benchmark provides commands to ease the development of benchmark charms. You can either import the python library into your action, or use the equivalent CLI commands.

#!/bin/bash

benchmark-start || true

... (your code goes here) ...

benchmark-finish || true

Installation

$ pip install charms.benchmark

Development

$ make venv
$ . venv/bin/activate
$ (venv) make develop