From 359813517e3382c527125fe673fa89f0fd0742c0 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Mon, 7 Jun 2021 13:52:20 +0530 Subject: added docstrings --- app/tests/conftest.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'app/tests/conftest.py') diff --git a/app/tests/conftest.py b/app/tests/conftest.py index 71eb677..68af9e5 100644 --- a/app/tests/conftest.py +++ b/app/tests/conftest.py @@ -1,3 +1,7 @@ +# -*- coding: utf-8 -*- +""" +Configuration with basic fixtures +""" import pytest from app import app as flask_app @@ -8,6 +12,11 @@ import os @pytest.fixture def app(): + """ + Special configurations for tests + + We use a dummy database and initialise it. + """ flask_app.config["WTF_CSRF_ENABLED"] = False flask_app.config["SQLALCHEMY_DATABASE_URI"] = ( "sqlite:///" + tempfile.mkstemp(suffix=".db")[-1] -- cgit v1.2.3