Roger Collins

Results 6 issues of Roger Collins

See the sqlmigrate dump below: ``` $ python manage.py sqlmigrate oidc_provider 0026 -- -- Create model ResponseType -- CREATE TABLE "OIDC_PROVIDER_RESPONSETYPE" ("ID" NUMBER(11) NOT NULL PRIMARY KEY, "VALUE" NVARCHAR2(30) NULL...

On the configuration page in the documentation (https://pytest-cov.readthedocs.io/en/latest/config.html) it specifies how to omit `tests/*` from coverage reporting. Following the instructions exactly results in `tests/*` still being covered.

Using basic auth with username and password, the getter ignores the caFile in the secret: `failed to download repository index: Get "https://my-private-repo/index.yaml": x509: certificate signed by unknown authority` Using curl...

This code works with mypy: ``` class MyClass: pass di[MyClass] = MyClass() async def my_async_func(my_class: MyClass) -> str: return MyClass.__class__.__name__ async def calling_func() -> str: return await my_async_func(di[MyClass]) ``` While...

bug
async
mypy

* psygnal version: 0.9.5 * Python version: 3.11.6 * Operating System: Ubuntu 22.04.3 ### Description After connecting events to mutable types, I would expect that events are called when they...

Since `load_x509_cert` and `KEYS.load_from_url` do not pass through kwargs to request, there is no way to configure the request session to allow client certificates or to override the `verify` setting.