How it works

Allure Report consists of a framework adapter and the allure command-line utility. After a simple initial configuration (described below), creating a test report for your project takes no more than three steps.

How Allure Report works, Allure Results, additional data, history data, serve vs generate

  1. Run your tests as you would do normally: from the command line, from your IDE, etc.

    In addition to printing or saving the test results in its own format (Test results on the picture above), the Allure Report adapter receives the data from a test framework. The API used for this communication depends on the framework — for example, the Allure adapter may be registered as a Playwright reporter, a Cucumber.js formatter, etc.

    The adapter saves data in the Allure file formats into a separate directory (allure-results on the picture above). The directory path can be changed in the adapter settings.

    The generated files include:

    You may run this step multiple times, accumulating data into the same results directory. This is useful, for example, if different tests require different runner parameters or different environments. As a group, these runs are referred to as a launch.

    When a launch contains multiple runs of the same test, they are referred to as retries.

  2. If necessary, put files with additional data for this launch into the results directory.

    Additional files may include:

    • environment file to store some global data for all the tests in the report,
    • executor file to describe the CI job and the URL at which the report will be located,
    • history files to enable trend graphs and other history-related features,
    • categories file to group test results into custom categories.

    Skip this step if you don't need to enable any of these features, or if your Allure adapter generates the files automatically. Check your adapter's documentation.

  3. Generate the HTML report by using one of the two Allure command-line commands.

    • allure generate processes the test results and saves an HTML report into the specified directory (allure-report on the picture above). To view the report, use the allure open command.

      Use this command if you need to save the report for future reference or for sharing it with colleagues.

    • allure serve creates the same report as allure generate but puts it into a temporary directory and starts a local web server configured to show this directory's contents. The command then automatically opens the main page of the report in a web browser.

      Use this command if you need to view the report for yourself and do not need to save it.

Initial configuration

The initial configuration depends on the test framework you are using. In general, the following steps are required:

  1. Install the Allure adapter for your test framework.

  2. Install the Allure command-line utility, see Installation.

    Depending on the framework you are using, the Allure adapter may come with the Allure command-line utility included. In such a case, you may skip this step.

  3. In your project's configuration, enable the Allure adapter and set its parameters.

See the specific adapter documentation for more details.

Powered by
logo

Join our newsletter

Join our community

We aim to make Allure Report as reliable and user-friendly as possible, and together with the community, we're here to help when problems arise.

© 2024 Qameta Software Inc. All rights reserved.