This commit is contained in:
2022-07-10 19:52:15 +01:00
parent dc7bc829b9
commit 97e6c49201
11 changed files with 174 additions and 3 deletions

11
tests/__init__.py Normal file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env python3
import pytest
from app.app import app
@pytest.fixture
def client():
client = app.test_client()
yield client