In my Symfony 6 project, I am trying to load a fixture: /** * @param ObjectManager $manager */ public function load(ObjectManager $manager): void { $mana
I have built authentication similar to what is described in the documentation. So I have this dependency copied from there: async def get_current_user(token: st
I'm trying to use py.test's fixtures with my unit tests, in conjunction with unittest. I've put several fixtures in a conftest.py file at the top level of the p
Is it possible to have the fixture initialized only once and use it in multiple test cases within the same test suite? In the following example, fixture is cons