Projet11/tests/conftest.py
2025-06-30 14:02:22 +02:00

8 lines
127 B
Python

import pytest
from server import app
@pytest.fixture
def client():
with app.test_client() as client:
yield client