Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vedro-allure-reporter

Package Overview
Dependencies
Maintainers
2
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

  • 1.10.0
  • PyPI
  • Socket score

Maintainers
2

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:

  1. Install the package using pip:
$ pip3 install vedro-allure-reporter
  1. 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc