Justas Trimailovas
Justas Trimailovas
As probably not anyone is able to create environment (HW/SW constraints, time constraints, knowledge constraints) to build files for books (.pdf, .html, .epub) it would be great it they would...
**Description** Upgrading anything above [v6.6.0.162](https://docs.newrelic.com/docs/release-notes/agent-release-notes/python-release-notes/python-agent-6060162) will make our GraphQL endpoints slower by some margin. From stable ~30ms to hovering between 50-100ms. Also CPU and RAM utilization is also noticable -...
`--durations` is tricked by `freezegun`, when `freezegun` is used in `autouse` fixture. Example: ```python from freezegun import freeze_time @pytest.yield_fixture(autouse=True) def frozen_time(): with freeze_time("2020-01-01T12:00:00Z"): yield def test_my_django_view(admin_client): resp = admin_client.get(...) assert...
This is a copy of an [issue in `pytest`](https://github.com/pytest-dev/pytest/issues/10245), that needs [coordination with `freezegun`](https://github.com/pytest-dev/pytest/issues/10245#issuecomment-1227102544). `--durations` is tricked by `freezegun`, when `freezegun` is used in `autouse` fixture. Example: ```python from freezegun...
**Context**: In vim surround extension closing brackets (`}, ], )`) should remove whitespace when using `cs` movement. Example: - Before: `{ example }` - Movement: `cs{}` - After: `{example}` This...