com.gitlab.et.paralleltests
Owner: Erol Turan
Plugin to run cucumber tests in parallel with configurable cli class, also supports Serenity-BDD
https://gitlab.com/erol.turan/gradle-parallel-cucumber-tests
Sources: https://gitlab.com/erol.turan/gradle-parallel-cucumber-tests
Version 1.0.2 (latest)
1.0.2
Created 27 March 2020.
Plugin to run cucumber tests in parallel with configurable cli class, also supports Serenity-BDD
Using the plugins DSL:
plugins {
id("com.gitlab.et.paralleltests") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.gitlab.et.paralleltests:gradle-parallel-cucumber-tests:1.0.2")
}
}
apply(plugin = "com.gitlab.et.paralleltests")
Using the plugins DSL:
plugins {
id "com.gitlab.et.paralleltests" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.gitlab.et.paralleltests:gradle-parallel-cucumber-tests:1.0.2"
}
}
apply plugin: "com.gitlab.et.paralleltests"