Linted .py files
Some checks failed
CI / Lint & Format (push) Has been cancelled
CI / Tests (Pytest + Alembic + Postgres) (push) Has been cancelled
CI / Docker Build (push) Has been cancelled

This commit is contained in:
2025-09-22 20:34:29 +01:00
parent e713f4cc6c
commit f04b04339f
14 changed files with 57 additions and 33 deletions

7
tests/test_model.py Normal file
View File

@@ -0,0 +1,7 @@
#
# 2nd tiny test to pass CI, just ensures package installs and models import OK.
#
def test_models_import():
from app.db.base import Base # noqa: F401
from app.models.user import User # noqa: F401
assert True