このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
whoogle-mod/test/conftest.py

9 行
114 B
Python
Raw 通常表示 履歴

from app import app
import pytest
@pytest.fixture
def client():
client = app.test_client()
yield client