Adam Sikora
Adam Sikora
Following tests should pass ``` from flexmock import flexmock class A: @classmethod def foo(cls, value: str): return value class B(A): pass def test_foo_return(): flexmock(B).should_receive('foo').and_return('a') B.foo('') flexmock(B).should_receive('foo').and_return('b') B.foo('') def test_foo_args(): flexmock(B).should_receive('foo').with_args('a')...
We are encountering occasional segfaults in our docker containers while compressing data through blosc2 library. Most of the runs everything works just fine but multiple times a day the container...