🚨 Shai-Hulud Strikes Again:More than 500 packages and 700+ versions compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

vedro-allure-reporter

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vedro-allure-reporter

Allure reporter for Vedro testing framework

pipPyPI
Version
1.12.0
Maintainers
1

Vedro Allure Reporter

Codecov PyPI PyPI - Downloads Python Version

Allure reporter for Vedro testing framework.

Installation

Quick

For a quick installation, you can use a plugin manager as follows:

$ vedro plugin install vedro-allure-reporter

Manual

To install manually, follow these steps:

  • Install the package using pip:
$ pip3 install vedro-allure-reporter
  • Next, activate the plugin in your vedro.cfg.py configuration file:
# ./vedro.cfg.py
import vedro
import vedro_allure_reporter

class Config(vedro.Config):

    class Plugins(vedro.Config.Plugins):

        class AllureReporter(vedro_allure_reporter.AllureReporter):
            enabled = True

Usage

To run tests with the Allure reporter, use the following command:

$ vedro run -r rich allure

This command executes your tests and saves the report data in the ./allure_reports directory.

To generate a report from the saved data, use the Allure command-line tool as follows:

$ allure serve ./allure_reports

This command will serve up the report (demo).

Explore more at https://vedro.io/docs/integrations/allure-reporter

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts