Giter VIP home page Giter VIP logo

allure-framework / allure2 Goto Github PK

View Code? Open in Web Editor NEW
3.8K 148.0 676.0 13.83 MB

Allure Report is a flexible, lightweight multi-language test reporting tool. It provides clear graphical reports and allows everyone involved in the development process to extract the maximum of information from the everyday testing process

Home Page: https://allurereport.org/

License: Apache License 2.0

Java 78.54% JavaScript 13.70% CSS 0.01% FreeMarker 0.24% SCSS 3.40% Handlebars 3.09% HTML 1.03%
allure reporting reporting-engine

allure2's Introduction

Allure Report

build-badge release-badge maven-badge Backers on Open Collective Sponsors on Open Collective

Allure Report is a flexible multi-language test report tool to show you a detailed representation of what has been tested and extract maximum from the everyday execution of tests.

Allure Report logo


Download

You can use one of the following ways to get Allure:

  • Grab it from releases (see Assets section).

  • Using Homebrew:

    $ brew install allure
  • For Windows, Allure is available from the Scoop commandline-installer. To install Allure, download and install Scoop and then execute in the Powershell:

    scoop install allure

How Allure Report works

Allure Report can build unified reports for dozens of testing tools across eleven programming languages on several CI/CD systems.

How Allure Report works

Allure TestOps

DevOps-ready Testing Platform built to reduce code time-to-market without quality loss. You can set up your product quality control and boost your QA and development team productivity by setting up your TestOps.

Contributors

This project exists thanks to all the people who contributed. [Contribute].

allure2's People

Contributors

aptester avatar avaddon-tfa avatar baev avatar dependabot-preview[bot] avatar dependabot[bot] avatar dtargons avatar ehborisov avatar eroshenkoam avatar fatih-sukran avatar fedavar avatar fescobar avatar icod avatar jaimedelreyg avatar jnhyperion avatar just-boris avatar ko4evnik avatar leonsabr avatar noomorph avatar nscuro avatar p-hessler avatar qameta-ci avatar rovner avatar seleniumtestab avatar simple-elf avatar skhomuti avatar sseliverstov avatar temamak avatar valfirst avatar vbragin avatar wookiej avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

allure2's Issues

Remove java stacktraces from commandline

java.net.BindException: Address already in use
	at sun.nio.ch.Net.bind0(Native Method)
	at sun.nio.ch.Net.bind(Net.java:433)
	at sun.nio.ch.Net.bind(Net.java:425)
	at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
	at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
	at org.eclipse.jetty.server.ServerConnector.open(ServerConnector.java:277)
	at org.eclipse.jetty.server.AbstractNetworkConnector.doStart(AbstractNetworkConnector.java:80)
	at org.eclipse.jetty.server.ServerConnector.doStart(ServerConnector.java:216)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
	at org.eclipse.jetty.server.Server.doStart(Server.java:359)
	at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
	at io.qameta.allure.command.ReportServe.run(ReportServe.java:46)
	at io.qameta.allure.CommandLine.main(CommandLine.java:73)

Tree filter

There are should be different ways to filter tree, for example by severity, time, status and name

Attachments are broken

Steps to reproduce:

First of all build a report

$ ./gradlew clean build

then serve demo data

$ allure-commandline/build/install/allure/bin/allure serve allure-web/test-data/demo

then you can find that all the attachments are broken

[Darwin] Fix working directory for commandline

Gradle generates this code:

# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
  cd "$(dirname "$0")"
fi

So in case you run allure from home directory it breaks relative paths

Fix duration graph

screen shot 2016-11-18 at 20 15 35

graph.json:

[ {
  "uid" : "8b284997c294bcfe",
  "name" : "shouldCreate",
  "time" : {
    "start" : 1479491116022,
    "stop" : 1479491116025,
    "duration" : 3
  },
  "status" : "passed",
  "severity" : "normal"
}, {
  "uid" : "8ffd0141f198fe86",
  "name" : "shouldCreate",
  "time" : {
    "start" : 1479491126385,
    "stop" : 1479491126386,
    "duration" : 1
  },
  "status" : "passed",
  "severity" : "normal"
}, {
  "uid" : "77a491ad45be2d1e",
  "name" : "shouldDelete",
  "time" : {
    "start" : 1479491136402,
    "stop" : 1479491136404,
    "duration" : 2
  },
  "status" : "passed",
  "severity" : "normal"
}, {
  "uid" : "e97ae4dca10a101b",
  "name" : "shouldMainTest",
  "time" : {
    "start" : 1479491146421,
    "stop" : 1479491146422,
    "duration" : 1
  },
  "status" : "passed",
  "severity" : "normal"
} ]

HistoryFileTest failed

io.qameta.allure.history.HistoryFileTest > skipHistoryForTestCaseWithoutId FAILED
java.lang.AssertionError at HistoryFileTest.java:57

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.