From 71e63bcdfad55afdb4743f2516ccd8f456615fcf Mon Sep 17 00:00:00 2001 From: amirk Date: Mon, 11 Nov 2024 13:54:39 +0200 Subject: [PATCH] feat: wip --- tests/integration_tests/clients/test_studio.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/integration_tests/clients/test_studio.py b/tests/integration_tests/clients/test_studio.py index 81ad29be..5cd0d4dd 100644 --- a/tests/integration_tests/clients/test_studio.py +++ b/tests/integration_tests/clients/test_studio.py @@ -17,7 +17,6 @@ @pytest.mark.parametrize( argnames=["test_file_name"], argvalues=[ - # ("completion.py",), ("tokenization.py",), ("chat/chat_completions.py",), ("chat/chat_completions_jamba_instruct.py",), @@ -28,7 +27,6 @@ ("chat/chat_response_format.py",), ], ids=[ - # "when_completion__should_return_ok", "when_tokenization__should_return_ok", "when_chat_completions__should_return_ok", "when_chat_completions_jamba_instruct__should_return_ok", @@ -53,23 +51,15 @@ def test_studio(test_file_name: str): argnames=["test_file_name"], argvalues=[ ("async_chat.py",), - # ("async_completion.py",), - # ("async_tokenization.py",), ("chat/async_chat_completions.py",), ("chat/async_stream_chat_completions.py",), - # ("async_library.py", ), - # ("async_library_answer.py", ), ("conversational_rag/conversational_rag.py",), ("conversational_rag/async_conversational_rag.py",), ], ids=[ "when_chat__should_return_ok", - # "when_completion__should_return_ok", - # "when_tokenization__should_return_ok", "when_chat_completions__should_return_ok", "when_stream_chat_completions__should_return_ok", - # "when_library__should_return_ok", - # "when_library_answer__should_return_ok", "when_conversational_rag__should_return_ok", "when_async_conversational_rag__should_return_ok", ],