mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-14 12:11:09 +00:00
19 lines
299 B
Python
19 lines
299 B
Python
import sys
|
|
|
|
import pytest
|
|
|
|
from libretranslate.app import create_app
|
|
from libretranslate.main import get_args
|
|
|
|
|
|
@pytest.fixture()
|
|
def app():
|
|
sys.argv = ['', '--load-only', 'en,es']
|
|
app = create_app(get_args())
|
|
|
|
yield app
|
|
|
|
|
|
@pytest.fixture()
|
|
def client(app):
|
|
return app.test_client()
|