jbwdevries

Results 6 comments of jbwdevries

We're seeing a similar issue using method chaining. I have an example here: https://pastebin.com/uTyDLrDY Removing one .method() call prevents the recursion error. So does `sys.setrecursionlimit(1001)`. (Obviously in our production case...

foo/\_\_init\_\_.py: ``` def my_func(): return 123 ``` requirements.txt: ``` pyfakefs==4.1.0 pytest==6.0.1 pytest-cov==2.9.0 ``` test_foo.py: ``` import pytest from foo import my_func @pytest.mark.no_cover def test_my_func(fs): assert 123 == my_func() ``` Makefile:...

Have you considered using `addopts` in your `pytest.ini`? I understand you can add `--without-integration --without-slow-integration` there, it may do what you want.

I just had to downgrade from 5.1.1 to 4.5.3, because calling write_message ended up claiming memory that was never returned. I tested this with 5.1.1 by commenting out the write_message...

@zaphoyd We have a situation where an application does both, it has multiple websocket client connections which up to now we could support with a single `websocketpp::client` instance. Just choosing...

I've added a note about how this plugin interacts with xdist. Unfortunately, to really get it to work, I would have to dig in into xdist's schedulers; I don't think...