Party/test/__init__.py
2023-07-04 20:56:15 +02:00

9 lines
149 B
Python

import pytest
from party import app
@pytest.fixture
def client():
#app.config['TESTING'] = True
client = app.test_client()
yield client