Merge pull request #22785 from BerriAI/fix/azure-batches-test-tenacity-import

Guard tenacity import in e2e Azure batch tests
This commit is contained in:
Julio Quinteros Pro 2026-03-04 11:34:57 -03:00 committed by GitHub
commit 317c162dfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,8 @@ import httpx
import openai
import psycopg2
import pytest
tenacity = pytest.importorskip("tenacity", reason="tenacity required for e2e batch tests")
from tenacity import Retrying, stop_after_delay, wait_fixed
sys.path.insert(0, os.path.abspath("../.."))

View File

@ -7,6 +7,8 @@ import warnings
import httpx
import openai
import pytest
tenacity = pytest.importorskip("tenacity", reason="tenacity required for e2e batch tests")
from tenacity import RetryError
sys.path.insert(0, os.path.abspath("../.."))