Ilia Smirnov
Ilia Smirnov
@devajmeireles Hi, PhpStorm is here! We are awaiting for updates regarding the plans as well, this feature would really help us to support the parallel running of tests through the...
Looks like `__pest_evaluable_` prefix isn't prepended to test names anymore. That's why the filter `--filter=/^(P\)?Tests\NewTest::it\sthis\sis\sa\stest(\swith\s(data\sset\s"."|(.))(\s/\s(data\sset\s"."|(.)))*(\s#\d+)?)?$/` doesn't work in Pest 3.x-dev, but the filter `--filter=/^(P\)?Tests\NewTest::__pest_evaluable_it\sthis\sis\sa\stest(\swith\s(data\sset\s"."|(.))(\s/\s(data\sset\s"."|(.)))*(\s#\d+)?)?$/` works just fine Do you have...
``` ReadAction.nonBlocking { TableAndAliasCollector(this).collect() DbReferenceResolver(this).resolve() }.inSmartMode(project).expireWith(expressionDisposable).executeSynchronously() ``` It means that the actions inside `ReadAction.nonBlocking` block will be executed on the current thread, therefore tests and following actions during plugin execution...
@ekvedaras Hi! The fact that this approach did not lead to the problem's fix means that you probably do not have enough cancellation points in the code (https://plugins.jetbrains.com/docs/intellij/general-threading-rules.html#read-action-cancellability). Please try...
It isn't my stacktrace and I can't get any information about the DB size, but I do expect that the user's DB is quite large) I can say that in...
One a second thought, I've realized that the code snippet from above doesn't prevent freezing, sorry for the confusion. I definitely recommend then to use a [ReadAction.nonBlocking()](https://github.com/JetBrains/intellij-community/tree/idea/233.14475.28/platform/core-api/src/com/intellij/openapi/application/ReadAction.java) from https://plugins.jetbrains.com/docs/intellij/general-threading-rules.html#read-action-cancellability
Does this not run only in tests or in PhpStorm too?
Hi @ekvedaras! Have you tried [the suggested approach](https://github.com/ekvedaras/laravel-query-intellij/pull/115#issuecomment-2078809187)?
@DmitrySkibitsky Hi! This is PhpStorm team once again. I was wondering if you encountered freezing issues when working with a local or remote database. Also, could you please provide me...