Stephen Moore
Stephen Moore
Hi, don't mean to revive the thread or anything but I figured this question would fit here best. It seems that when I run the `effects/stop` command with the following...
For https://github.com/typeddjango/pytest-mypy-plugins/issues/144 I think it'll be useful if the yaml definition can be given more control over how the test actually runs it. To help with that this PR makes...
Hello I'm trying to use the builder on the example project and I can't quite work it out I did a `git clone [email protected]:home-assistant/addons-example.git` and from the `addons-example` directory did:...
Hi, it appears that TypeChecker.fail doesn't match the `CheckerPluginInterface` interface https://github.com/python/mypy/blob/d39f0234a18762a9b261a28763c7bea706633ce7/mypy/plugin.py#L242 ``` @abstractmethod def fail( self, msg: str | ErrorMessage, ctx: Context, *, code: ErrorCode | None = None )...
I believe django/contrib/postgres/fields/ranges.py:*:base_field has the wrong type. They were changed to be types here https://github.com/typeddjango/django-stubs/pull/2078#discussion_r1794533837 But it seems django will instantiate them in the constructor https://github.com/django/django/blob/40a60d589e1d0d290c3b79c7e97d9cd0c94e52e3/django/contrib/postgres/fields/ranges.py#L65 Before I make a...
Hi, I have a kubedb redis cluster in my kubernetes cluster and I create my go-redis ClusterClient with the Addrs of `[]string{"my-redis.kubedb:6379"}`. This works fine until I do a deployment...
Hi, I want to make it so that I can run the tests for my project against `django==4.2` and separately against `django==5.1`, which means if I want that represented in...
### Tracer Version(s) 2.15.0+ ### Python Version(s) Python 3.12 ### Pip Version(s) latest/uv ### Bug Report Hello, In our very large Django app we have some views that manage to...
After [PEP 669](https://peps.python.org/pep-0669/) there is now a formal way to determine if a debugger is active, which replaces sys.gettrace. Fixes #32