Adrien Cossa
Adrien Cossa
Done in https://github.com/souliane/wokkel/commit/b5d06fd5887396f62deccdcce9e6a26536fc6b59.
Hi Ralph, thanks for the review. I merged your branch in mine and pushed https://github.com/souliane/wokkel/commit/cd63436e131c14f818d24b4a8332f14b1296634f
Hi, similar thing happens to me when modifying a `DecimalField.max_digits`. The easiest way I found to deal with this is to add a `RunPython` operation in the migration file, before...
I think there's currently no way to expect an exception as beautifully as `pytest.mark.xfail` would allow to do. Also, you are using `pytest.param` in your example, but `parameterized` has its...
I can't reproduce with 2 `breakpoint()`, but with this instead: ``` def test_foo(): breakpoint() raise Exception ``` And running with the same command: `pytest --pdbcls pudb.debugger:Debugger --pdb --capture=no test.py` It...
Hi @jhominal, > [...] this version does not work when streaming a `starlette.responses.StreamingResponse` object. The reason for that being, that `starlette.responses.StreamingResponse` puts the `send` calls in a spawned sub task...
I'd like to see such a cission too! I got just trapped by using relativedelta(year=1) instead of relativedelta(years=1). This is very dangerous! BTW it is a bit weird to read:...