Ran Benita

Results 431 comments of Ran Benita

Merged through #12027, thanks @robotherapist.

There's probably too much here for anyone to deal with -- gevent, forks, daemon threads, multiprocessing, events, global variables...

Thanks for the bug report @nonatomiclabs, I agree the new behavior is buggy. I will take a look. The duplicate handling is a bit of a headache and as you...

I started looking at this, but it's surprisingly tricky to come up with a self-consistent, intuitive and reasonably backward-compatible logic for the duplicate handling, if you think about it. Though...

First, some explanations of the details that are relevant to duplicate handling, then some thoughts on how it should work. ## Collection arguments The collection arguments are the inputs that...

The feature request makes sense to me, I think it would be great to allow matching on mark arguments (there are two kinds -- positional and keyword arguments), and something...

For understanding better, can you add a step `ls -l` after the pytest run but before the cache teardown step? Actually, also before the pytest run would be helpful.

Specifically `ls -l /home/runner/work/gaphor/gaphor/`.

Makes sense: ``` drwx------ 3 root root 4096 May 14 01:56 .pytest_cache ``` I assume that the `TemporaryDirectory` we're using since #12168 is creating a directory with 700 permissions, while...

It's possible some other plugin reorders as well? Try like this: ```py @pytest.hookimpl(trylast=True) def pytest_collection_modifyitems(config, items): ... ```