Spaces:
Sleeping
Sleeping
| """Fixtures partagées pour les tests.""" | |
| import pytest | |
| from app import app as flask_app | |
| def client(): | |
| """Client de test Flask.""" | |
| flask_app.config["TESTING"] = True | |
| with flask_app.test_client() as client: | |
| yield client | |