Florian Bruhin
Florian Bruhin
### Discussed in https://github.com/qutebrowser/qutebrowser/discussions/6552 Originally posted by **ldelossa** June 16, 2021 Hello, On Fedora 34 if I use full screen the entire app graphically glitches. Once out of full screen...
Hey! First of all, thanks a lot for porting MicroPython to the NSpire, it's really useful for me! I wanted to ask if there's a particular reason (that is, other...
The latest release is 0.5, yet [HISTORY.rst](https://github.com/hjwp/pytest-icdiff/blob/master/HISTORY.rst) only documents releases up to 0.3.
There is already an existing [unittest2pytest](https://github.com/pytest-dev/unittest2pytest/) project under the `pytest-dev` umbrella by @htgoebel, which has the same name and works via lib2to3 as well. Unfortunately, that's quite confusing - and...
Prompted by #287, I'd propose to drop big parts of pylib in a (hopefully more or less final) py 2.0 release. Clearly nobody is interested in maintaining pylib, the current...
This file: ```python def test_user_properties_list(record_property): record_property("hello", ["world", "mars"]) def test_user_properties_set(record_property): record_property("hello", {"world", "mars"}) ``` results in the following reports (pretty printed for readability): ```json { "nodeid": "test_replog.py::test_user_properties_list", "location": [ "test_replog.py",...
When writing unittest.py tests, often the test methods are camel-cased, e.g. `def testThing(self): ...`. With pytest, the usual convention is snake_case (as per pep8), i.e. `def test_thing():`. It'd be nice...
I tried a minimal testcase using `Xvfb`: ``` python import faulthandler import signal import pytest faulthandler.register(signal.SIGUSR1) @pytest.fixture(scope='session') def run_services(): return True def test_foo(xvfb): pass ``` unfortunately that hangs using 100%...
To make various password userscripts work without everyone needing its own logic. Maybe the selecting part could be separate, though, via some more generic completion integration.
If a request type doesn't support redirections, we fail with: `qutebrowser.extensions.interceptors.RedirectFailedException: Request method does not support redirection.` However, the exception type is not exposed via the API. Also, there should...