Skip to content
New issue

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

Incorrectly depends on compiling tests #993

Open
pkubowicz opened this issue Jun 8, 2023 · 0 comments
Open

Incorrectly depends on compiling tests #993

pkubowicz opened this issue Jun 8, 2023 · 0 comments

Comments

@pkubowicz
Copy link

Current logic adds dependency on all tasks that:

task.getName().startsWith("compile") && !task.getName().startsWith("compileTest")

This is incorrect, as you may have more types of tests than standard ones:
https://blog.gradle.org/introducing-test-suites

You can have compileIntegrationTest and many more.

The correct logic should be:

&& !task.getName().contains("Test")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant