Paweł Mendelski

Results 12 comments of Paweł Mendelski

In 06cd61cf7b67e183f84e8a04a89937eb960e9cdb this option was changed to: ``` let g:indentLine_concealcursor=0 ```

Thanks for such a fast answer. I added logs and tried `toFuture().get()` but it seems to not solve the problem. In logs I can see that the code is executed...

Just to summarize it. There is a workaround for this problem described in https://github.com/srs/gradle-node-plugin/issues/143#issuecomment-328406484 ```sh ./gradlew watchWeb --no-daemon ps aux | grep node ``` ...although IMHO it's a workaround not...

@orange-buffalo good idea. I have just created a [topic on gradle discuss](https://discuss.gradle.org/t/turn-off-gradle-deamon-for-a-task-from-a-plugin/24699). Let's start there.

Definitely it should. I hoped to see it mature from incubation first (from the same [docs](https://docs.gradle.org/current/userguide/jvm_test_suite_plugin.html): `The JVM Test Suite plugin is an incubating API and is subject to change...

Hey @bgalek First of all, sorry for being sluggish with the response. Didn't want to just merge your PR as it required loading some context. I know that this plugin...

> oh, there was a kotlin update happening, > > > The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `1.9.24` that might work differently than in the requested...

Thanks for the link, sounds interesting. It requires migrating to test suites first https://github.com/coditory/gradle-integration-test-plugin/issues/126. I will probably test it in the near future but cannot provide any timeline. Would you...

Hey @bgalek, take a look at release [2.0.0](https://github.com/coditory/gradle-integration-test-plugin/releases/tag/v2.0.0). New release integrates with Jvm Test Suites and Jacoco, but look out for some backward incompatibilities.

I changed it because having different source name `integration` and task name `integrationTest` is cumbersome in JVM test Suites. The plugin could simply fail builds if `src/integration` is detected ...but...