tests: move testing stuff into its own directory

This commit is contained in:
bronsen 2026-05-14 00:57:28 +02:00
parent 6029184f22
commit 9098ed05f1
4 changed files with 12 additions and 6 deletions

11
testing/conftest.py Normal file
View file

@ -0,0 +1,11 @@
from pytest import Config
def pytest_configure(config: Config):
"""
Registers a new mark 'final' that can be applied to tests.
I did not want to add these in pyproject.toml.
"""
config.addinivalue_line("markers", "final: the final test")