File size: 262 Bytes
05269f9
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from tests.inference_test import test_inference
from huggingface_hub import login
login(new_session=False)
import warnings
warnings.filterwarnings("ignore")
def run_test():
    try:
        test_inference()
    except Exception as e:
        print(e)

run_test()