Upload files to "tests"

This commit is contained in:
2026-04-15 10:05:48 +00:00
parent 5dbf542c40
commit e48356e7d3
2 changed files with 54 additions and 0 deletions

9
tests/conftest.py Normal file
View File

@@ -0,0 +1,9 @@
import pytest
from app import app
@pytest.fixture
def client():
app.config["TESTING"] = True
with app.test_client() as client:
yield client