Created
August 12, 2019 08:24
-
-
Save rnemeth1980/df0f7ed46487fca13e8d412c23984fbb to your computer and use it in GitHub Desktop.
Allure Test Report for geb/gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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