CharloMez
CharloMez
I have the same issue. The problem is that behatch and symfony-extension have two way to inject dependencies. You can inject Behatch dependencies through behat.yml like this: ``` - App\Behat\Context\JsonExtendedContext:...
@pamil I'm trying, but I don't find how to get all ArgumentResolver... when I try in compiler pass ``` use Behat\Behat\Context\ServiceContainer\ContextExtension; ..... $container->findTaggedServiceIds(ContextExtension::ARGUMENT_RESOLVER_TAG); ``` I got nothing, but behat find...
@kbond actually I tried to build a docker environment to make tests works in local env, I partially succeed (I can't run functional tests). So it's almost a blind devlopment....
I set up a docker environment with php/pqsql/nginx, I configured it well, the DATABASE_URL is well set in the container, but I still don't succeed to run your test suite....
ok finally I succeed to make it run locally (with my docker setup), and it works locally with a php8.
@kbond finally CI is ok (except scrutinizer, I don't know why, everything look green). I will try to share my docker-compose environment after some cleaning
> Just a few comments: > > 1. Relation factory's created during `create()` would currently have events called even if disabled by the parent. There are certain scenarios where they...
> FYI, `withoutPersisting` is "passed" down to sub-factory's Ah ok I didn't notice, my bad. But when I said that, I thought more about different way to declare it in...
ok let's do it like that (follow the disable to child factories)
> Ok, yeah, I'm thinking let's disable events for all of create. The solution for allowing sub-factory's to be created with events will be to create them first: > >...