Tuukka Mustonen

Results 9 issues of Tuukka Mustonen

#### What's the problem this feature will solve? `--log-level` is nice. However, certain modules (like [SQLAlchemy](https://docs.sqlalchemy.org/en/14/core/engines.html#configuring-logging)) default to certain log level, which doesn't get set/adjusted/overwritten via `--log-level` which only sets...

type: proposal
plugin: logging

**Describe the bug** Storing an instance of `sqlalchemy.dialects.postgresql.UUID` to a variable and re-using that in the column declarations is seen as `NullType`. **Expected behavior** Type should be detected as `Column[UUID]`?...

bug
mypy plugin

### Summary Mounting a router to multiple apps raises: ``` E litestar.exceptions.http_exceptions.ImproperlyConfiguredException: 500: Router with path / has already been registered ``` There's been some discussion at least in https://github.com/litestar-org/litestar/issues/148...

Enhancement

### Summary Sometimes, it would be nice to initialize multiple `Testclient`s, but only do the blocking portal magic once. The request routing magic lives in `TestClient(Transport)` so simply copying the...

Enhancement
Needs MCVE

### Summary The `TestClient` does not support all of the constructor args that `httpx.(Async)Client` does. Unless there's technical reason, it should. For example `auth` is missing there, yet you can...

Enhancement
Help Wanted :sos:
area/testing

```py with freeze_time() as factory: ``` `factory` can be either `StepTickTimeFactory` or `FrozenDateTimeFactory`. It's a bit annoying, because the two have slightly different APIs (e.g. `tick()` takes different types). Could...

So this may be silly, sorry if it is, but I don't understand the [docs](https://pytest-cov.readthedocs.io/en/latest/config.html#caveats): > A unfortunate consequence of coverage.py’s history is that `.coveragerc` is a magic name: it’s...

It would be useful to have access to the exceptions/stacktraces of all attempts, via `RetryError`. This would allow to create e.g. metrics out of failed attempts and in general have...

## Context The docs at https://docs.stoplight.io/docs/prism/83dbbd75532cf-http-mocking have this as the highest priority in value mocking: > - If the property has a default value, then it will return the specified...