Files
epage/tests/__init__.py
2022-07-10 19:52:15 +01:00

12 lines
143 B
Python

#!/usr/bin/env python3
import pytest
from app.app import app
@pytest.fixture
def client():
client = app.test_client()
yield client