mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-17 04:50:11 +01:00
14 lines
336 B
Python
14 lines
336 B
Python
import pytest
|
|
from app.init import boot
|
|
from argostranslate import package
|
|
|
|
def test_boot_argos():
|
|
"""Test Argos translate models initialization"""
|
|
boot()
|
|
|
|
print(package.get_installed_packages())
|
|
assert len(package.get_installed_packages()) > 2
|
|
# Check length models?
|
|
# assert 0.80 < scores['precision'] < 0.95
|
|
|