1
0
Fork 0
onnx-web/api/tests/helpers.py

10 lines
156 B
Python
Raw Normal View History

2023-09-26 02:57:25 +00:00
from typing import List
def test_with_models(models: List[str]):
def wrapper(func):
# TODO: check if models exist
return func
return wrapper