[tests] Tell pytest to always create a new db and to NOT run migrations

This commit is contained in:
bronsen 2025-03-13 17:44:32 +01:00
parent 3edd39f013
commit 8500ebb157

View file

@ -4,4 +4,9 @@ python_files = [
"test_*.py",
"tests.py"
]
addopts = [
"--create-db",
"--no-migrations",
"--capture=sys",
]