We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when using unbroken dome to include an integrationTest sourceSet, I can run a single unit test like so:
gradle myserver:test --tests com.foo.TestClass.singleTestABC
But if I try to do the same thing with an integration source set:
/gradle myserver:integrationTest --tests com.foo.IntTestClass.singleTestDEF
Instead of running the single test, it runs the entire IntTestClass, and all of the tests inside it.
The text was updated successfully, but these errors were encountered:
As an update: I've been using the JUnit4 Vintage engine. I migrated to JUnit5 engine and this now works.
Sorry, something went wrong.
No branches or pull requests
when using unbroken dome to include an integrationTest sourceSet, I can run a single unit test like so:
gradle myserver:test --tests com.foo.TestClass.singleTestABC
But if I try to do the same thing with an integration source set:
/gradle myserver:integrationTest --tests com.foo.IntTestClass.singleTestDEF
Instead of running the single test, it runs the entire IntTestClass, and all of the tests inside it.
The text was updated successfully, but these errors were encountered: