ursus
01/29/2025, 2:01 AMtest view in intellij when I create a gradle run configuration and launch check task in it?
Run as test is not checked..Chris Lee
01/29/2025, 2:48 AMcheck task is a lifecycle task; it depends on various other tasks, including test which runs the tests; IntelliJ is picking up on that and showing the test results.ursus
01/29/2025, 2:48 AMRun as test its like 50% slowerspand
01/29/2025, 9:26 AMVampire
01/29/2025, 9:54 AMbuild -x assemble or similar, because if check or test do not appear in the task names explicitly, this auto-detection does not trigger.
That for check and test it is auto-triggered actually is a good thing, because the test-result display in the "Run" tool window is much better than just the output in the "Build" tool window. But maybe there should still be an explicit way to prevent that.