Open tarasgor-allegro opened 1 week ago
I would say it's improvement not a bug ;)
@tarasgor-allegro thanks for creating this issue and the draft PR, it was really helpful.
After reading Gradle lazy configuration I added/changed some tests to cover the lazy path and found few more corner cases to cover. Thus created and merged a separate PR https://github.com/coditory/gradle-integration-test-plugin/pull/157
Overall it's a great improvement and my oversight. Please test the newest version 2.2.0
and let me know if all works as intended.
NICE! :) I'll be happy to test that out :)
👍
Context
To improve configuration phase of gradle scripts that uses this plugin.
Expected behavior
If we have the following build script with custom task:
Then executing custom task:
./gradlew customTask
Should not trigger the configuration of all test tasks:Observed behavior
If we have the following build script with custom task:
Then executing custom task:
./gradlew customTask
triggers the configuration of all test tasks: