Skip to content

Instantly share code, notes, and snippets.

@rnemeth1980
Created August 12, 2019 08:24
Show Gist options
  • Select an option

  • Save rnemeth1980/df0f7ed46487fca13e8d412c23984fbb to your computer and use it in GitHub Desktop.

Select an option

Save rnemeth1980/df0f7ed46487fca13e8d412c23984fbb to your computer and use it in GitHub Desktop.
Allure Test Report for geb/gradle
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'org.gebish:geb-gradle:2.0'
classpath 'io.qameta.allure:allure-gradle:2.5'
}
}
apply plugin: "groovy"
apply from: "gradle/idea.gradle"
apply plugin: 'io.qameta.allure'
allure {
version = '2.7.0'
aspectjweaver = true
autoconfigure = true
useSpock {
version = '2.0-BETA10'
}
downloadLink = 'https://dl.bintray.com/qameta/generic/io/qameta/allure/allure/2.7.0/allure-2.7.0.zip'
}
repositories {
jcenter()
}
...
...
...
tasks.withType(Test)*.finalizedBy 'allureReport'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment