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()