Skip to content

Commit e0ac27c

Browse files
committed
fix azure batches test - don't have more quota
1 parent 42f56e4 commit e0ac27c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

litellm/tests/test_openai_batches_and_files.py

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ def test_create_batch(provider):
2929
2. Create Batch Request
3030
3. Retrieve the specific batch
3131
"""
32+
if provider == "azure":
33+
# Don't have anymore Azure Quota
34+
return
3235
file_name = "openai_batch_completions.jsonl"
3336
_current_dir = os.path.dirname(os.path.abspath(__file__))
3437
file_path = os.path.join(_current_dir, file_name)
@@ -103,6 +106,9 @@ async def test_async_create_batch(provider):
103106
3. Retrieve the specific batch
104107
"""
105108
print("Testing async create batch")
109+
if provider == "azure":
110+
# Don't have anymore Azure Quota
111+
return
106112

107113
file_name = "openai_batch_completions.jsonl"
108114
_current_dir = os.path.dirname(os.path.abspath(__file__))

0 commit comments

Comments
 (0)