Benjamin Dauvergne
Benjamin Dauvergne
I think that in a chat the y-axis should be labeled using the measure label. I can work on it if I'm given some direction.
``` File "/home/bdauvergne/.tmp/tox-bdauvergne/passerelle/py3-django22-xmlschema14-codestyle-coverage/lib/python3.9/site-packages/pytest_httpbin/plugin.py", line 3, in from httpbin import app as httpbin_app File "/home/bdauvergne/.tmp/tox-bdauvergne/passerelle/py3-django22-xmlschema14-codestyle-coverage/lib/python3.9/site-packages/httpbin/__init__.py", line 3, in from .core import * File "/home/bdauvergne/.tmp/tox-bdauvergne/passerelle/py3-django22-xmlschema14-codestyle-coverage/lib/python3.9/site-packages/httpbin/core.py", line 22, in from werkzeug.wrappers import BaseResponse...
I use both in my tests and I created a media fixture (creating a temporary media directory and using the settings fixture) with autouse=True, due to alphabetic order it made...
If you do not generate a per encryption IV your setup is not semantically secure, see http://en.wikipedia.org/wiki/Initialization_vector
``` lib/python3.11/site-packages/facturx/facturx.py:40: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html from pkg_resources import resource_filename ``` https://setuptools.pypa.io/en/latest/pkg_resources.html
As per https://tools.ietf.org/html/rfc5280#section-4.1.2.5.1 : 4.1.2.5.1. UTCTime The universal time type, UTCTime, is a standard ASN.1 type intended for representation of dates and time. UTCTime specifies the year through the two...
Server threads take some times to shutdown, calling ThreadMixin.server_close() will wait on those threads. It prevents ResourceWarning about an unclosed listening socket after a pytest run.