src/app.py : initialisation de l'authentification au démarrage (#73)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Colin Maudry
2026-04-20 17:34:12 +02:00
parent a02a9df081
commit 8896726e09
2 changed files with 11 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
def test_app_imports_cleanly(users_db_path):
from src.app import app
assert app is not None
# Flask-Login manager attaché
assert "login_manager" in app.server.extensions or hasattr(
app.server, "login_manager"
)