mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-12-18 08:27:03 +02:00
19 lines
252 B
Python
19 lines
252 B
Python
|
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()
|