Fix for using structlogs with named loggers.
v8
The version 8 of `logassert` brings support for the [structlog](https://www.structlog.org) library. Yes, now you can use the whole power of logassert when using structlog as a logger. As it's the first release with this support we may tune it or make it better with future small adjustments, please open issues or contact me if you work with it and have ideas/problems to solve, thanks!
There is also small administrative enhancements: better README (and documentation in [Read The Docs](https://logassert.rtfd.org)), the CI uses modern Pythons, better tested badge, etc.
v7
- Teardown the handler after test run
v6
- Simple way to check that nothing was logged (on any level or a specific one):
python
assert NOTHING in logs.debug
- Helper to check that several lines were logged one after the other:
python
assert Sequence(
"Got 1 error and \d+ warnings:",
Exact(" error: bar"),
) in logs.debug
- Show proper message when "not in" assertion is used (thanks [Diego Mascialino](https://github.com/dmascialino))