Sergey Khoroshavin
Sergey Khoroshavin
Awesome! Do you have any plans regarding keeping some common code, or you envisioned this as a complete rewrite? Also while I cannot make any commitments right now I really...
I could swear it showed exact dbus endpoint at which fondo was not able to connect, however now it shows error dialog box with just ``` Error while getting peer-to-peer...
Thanks for detailed answer, it gave me some different new ideas. 1. When going inplace pointers route there is really no need in additional hidden field. Since tables already have...
After some more thinking I came up with one more idea how to approach buffer mutation. Given that original buffer should be immutable, and the fact that flatbuffers format allows...
@mikkelfj thanks, I've read a proposal and it looks good for inheritance, but I fail to see how does it help to address mutability. Any hints?
Thanks for pointing at piece chain article, was definitely worth reading. Now back to mutable interface - I've got an impression that when implementing it using piece chains mixins or...
One of random local fails was: ``` ____________________________________________________________________________ test_uninstalled_package_version[docker://debian_stretch] ____________________________________________________________________________ [gw3] linux2 -- Python 2.7.15 /home/xop/Projects/testinfra/.tox/py27/bin/python host = @pytest.mark.destructive def test_uninstalled_package_version(host): with pytest.raises(AssertionError) as excinfo: host.package('zsh').version assert 'Unexpected exit code...
Checked `git log`, yes, I do have this commit
By the way, why not just statically set scope of `host` fixture to `module` and move destructive tests to separate files? Maybe it's not that smart solution, but it is...