Zach Kanzler

Results 18 issues of Zach Kanzler

This PR adds the Client ID and Client Host to the `kafka_consumergroup_current_offset` and `kafka_consumergroup_lag` metrics, which describe the group member (if any) assigned to the particular partition. ```prometheus kafka_consumergroup_current_offset{client_host="/1.2.3.4",client_id="my.consumer.2",consumergroup="log_ingestion",partition="11",topic="logs"} 1.1231975e+07...

**Is your feature request related to a problem? Please describe.** I often develop out of a monorepo, where my Python source root is _not_ my project root. This has become...

It would be nice to be able to change the font size of the lyrics. Even more lovely would be the ability to change the font size quickly using a...

_Note: this is just a suggestion — I have no horse in this race_ ## Description This PR moves package requirements out of _requirements.txt_ and straight into `install_requires` of _setup.py_...

Because the `settings` fixture undoes its modifications once at fixture teardown, if `override_settings` is used after `settings` fixture setup, but before any `settings.VAL = 1` setattr statements, the `settings` fixture...

# Brief This PR adds support for using `LazyFixture` as a declaration directly in the factory, when using the factory class fixture. This makes the following possible: ```py import factory...

On Python 3.6, all the tests appear to be erroring out with a traceback similar to this: ```pytb ____________________ ERROR at setup of test_pytest_fixtures ____________________ .tox/py36/lib/python3.6/site-packages/django/db/migrations/state.py:409: in from_model fields.append((name, field.clone()))...

Prevent TLS handshake for every damn request.

enhancement

In a large codebase, I often set `pytest.mark.only` on the feature I'm working on, so I don't run the whole suite every time. However, there are a few times when...

Currently, when defining test methods within a class, PyCharm will suggest `Method 'test_xyz' may be static`, with quick fixes to make a function out of the method, or to convert...