python-pytest-beakerlib

Created 7 years ago
Maintained by encukou
A pytest plugin that reports test results to the BeakerLib framework.
Members 2
Dan Callaghan committed 6 years ago

A pytest plugin that reports test results to the BeakerLib framework.

Once installed, this plugin can be activated via the --with-beakerlib option. This requires a BeakerLib session (i.e. rlJournalStart should have been run, so that $BEAKERLIB is set)

Downloading

Release tarballs are available for download from Fedora Hosted:
https://pagure.io/releases/python-pytest-beakerlib/
You can also install using pip:
https://pypi.python.org/pypi/pytest-beakerlib/0.2

The plugin is also available in Fedora repositories as python3-pytest-beakerlib.

Operation

A Bash process is run on the side, and BeakerLib commands (rlPhaseStart, rlPhaseEnd, rlPass, rlFail, ...) are fed to it. This is not very elegant, but since BeakerLib commands are Bash functions, there is no way around running Bash.

Integration

Other plugins may integrate with this using pytest's config.pluginmanager.getplugin('BeakerLibPlugin'). If this is None, BeakerLib integration is not active, otherwise the result's run_beakerlib_command method can be used to run additional commands.

Contributing

The project is happy to accept patches! Please file any patches as Pull Requests on the project's Pagure repo. Any development discussion should be in Pagure Pull Requests and Issues.