Skip to content

Commit 494898c

Browse files
committed
Exclude LLM media types from tests
1 parent 358239a commit 494898c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/integration/test_project.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,11 @@ def test_media_type(client, configured_project: Project, rand_gen):
394394
project.delete()
395395

396396
for media_type in MediaType.get_supported_members():
397+
# Exclude LLM media types for now, as they are not supported
398+
if MediaType[media_type] in [
399+
MediaType.LLMPromptCreation, MediaType.LLMPromptResponseCreation
400+
]:
401+
continue
397402

398403
project = client.create_project(name=rand_gen(str),
399404
media_type=MediaType[media_type])

0 commit comments

Comments
 (0)