Vasily Kuznetsov

Results 30 comments of Vasily Kuznetsov

Hi, Mihail! > Do you know if there are limitations of running it multithreaded? `script_runner` fixture is function scoped, so it should work. > Could we with @brechtm somehow contribute...

Yeah, I agree with @HexDecimal. Now with greater proliferation of build tools supporting testing while not installed for all kinds of packages is a lot of work. `pip install -e...

I was looking into this today. `metafunc.parametrize` takes a parameter called `scope` and if you set it to "session", the grouping of the tests will be the same as with...

I did a bunch of experiments with this today. Here's a [brief report](https://gist.github.com/kvas-it/13c5b7a484f6bddbb24d10286b7252fa) of key findings. TLDR: The behaviour described here is correct because second example is parametrizing the functions...

IMO this shouldn't block anything because I think we don't want to change current behaviour and would only add warnings for some confusing cases + update the documentation. So it...

Hi @HealthyPear! Sorry for the late answer, life has been busy lately. When pytest-console-script runs the scripts in in-process mode, it only imports your code once, so different runs might...

> One option is to mess with [sys.modules](https://docs.python.org/3/library/sys.html#sys.modules), cleaning it before running a script will cause a reload of imported modules. However, editing `sys.modules` is not thread-safe and might break...

> So the issue's been identified and there's not much that can be changed to prevent this other than maybe further clarifying the two modes in the documentation or changing...

> The actions summary lists several other outdated actions as well. I can make a PR if you want the workflow updated. Doesn't seem very urgent but if you have...