LibreTranslate/tests/test_api/conftest.py

19 lines
252 B
Python
Raw Normal View History

import sys
import pytest
from app.app import create_app
from app.main import get_args
@pytest.fixture()
def app():
sys.argv = ['']
app = create_app(get_args())
yield app
@pytest.fixture()
def client(app):
return app.test_client()