Jaja

Results 3 comments of Jaja

Hello, thanks for answering :) The whole tests needs to be run twice, one as a boolean named "driver_client" as True, and once as False. Those two runs must be...

I discovered the params attributes of fixtures and the 'request' existing fixture. I replaced the legacy ```py def pytest_generate_tests(metafunc): if "driver_client" in metafunc.fixturenames: metafunc.parametrize("driver_client", (False, True), scope="session") ``` by ```py...