Vasily Kuznetsov

Results 36 comments of Vasily Kuznetsov

Hey, @HexDecimal! Thanks for the fast implementation. I was thinking that what you did wouldn't work, because when we make `script_runner` session-scoped, it would be created only once per test...

> > Unfortunately this means that if we have a heavy session-scoped fixture depending on script_runner, it will be re-created for each launch mode used in the tests. We probably...

> `metafunc.parametrize` was missing a `scope` argument: > > > scope (Optional[_ScopeName]) – If specified it denotes the scope of the parameters. The scope is used for grouping tests by...

> Say I have one script that creates a giant database from some input files, and then many other scripts that query that database during their computation. I would want...

> This custom fixture can even use the `script_runner` fixture without issues. I assume the issue there would be that a module- or session-scoped fixture can't depend on a test-scoped...

> I agree that there may be a hole in the documentation, if nothing will be fixed on this issue in the near future. It seems that #90 would fix...