mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 13:23:23 +08:00
7 lines
194 B
Python
7 lines
194 B
Python
import pytest
|
|
from importlib import import_module
|
|
|
|
def test_initialize_sentence_transformer_import():
|
|
mod = import_module('utils.initialize_sentence_transformer')
|
|
assert mod is not None
|