gradle-testsets-plugin icon indicating copy to clipboard operation
gradle-testsets-plugin copied to clipboard

A plugin for the Gradle build system that allows specifying test sets (like integration or acceptance tests).

Results 17 gradle-testsets-plugin issues
Sort by recently updated
recently updated
newest added

Gradle Wrapper Version 7.1 I was trying to add a dependency to the test library module i defined like this: ```kotlin testSets { createLibrary("testCommon") create("testIntegration"){ imports("testCommon") } unitTest{ imports("testCommon") }...

Hey, awesome plugin :) Allowed me to remove a nice chunk of boilerplate from my gradle build files :) Like the title says, at least by default, when a test...

I have a Java Spring Boot application that uses the testsets plugin with jacoco. I cannot get test coverage on integration test and have tried every example I have come...

I have a multi module project using gradle kotlin DSL and I have configured the integration test set: ``` testSets { create("testIntegration") { dirName = "test-integration" } } ``` I...

In gradle Test, we can do something like [this](https://docs.gradle.org/current/dsl/org.gradle.api.tasks.testing.Test.html#org.gradle.api.tasks.testing.Test:jvmArgs)

I created the integration test sourceset like this: ```kotlin testSets { create("integration-test") } ``` using `integrationTestImplementation` in `dependencies` therefore is not resolving. Is there a way to make it work?

Hi, I'm trying to use gradle-testsets-plugin v 3.0.1 with gradle 6.6.1: `plugins { id "org.unbroken-dome.test-sets" version "3.0.1" }` The build fails because gradle is unable to get the module from...

After upgrading to version 3.0 we've found, that the `integrationTestImplementation` dependencies are not present in the eclipse classpath anymore. Adding the configuration via: ``` eclipse { classpath { plusConfigurations +=...

I have a scenario where I want to re-use code from a testset in another testset. The setup is as follows ``` plugins { id 'groovy' id 'idea' id 'org.unbroken-dome.test-sets'...

I started with all of my tests under test/java/com/corp/package some of these are org.springframework.boot.test.context.SpringBootTest After adding this plugin, and moving a single test into integrationTest/java/com/corp/package, I can no longer launch...

help wanted