Skip to content

Commit

Permalink
test name
Browse files Browse the repository at this point in the history
  • Loading branch information
gjwoods committed Sep 26, 2023
1 parent 70b6ae5 commit f0a38ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/promptflow-tools/tests/test_open_source_llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_open_source_llm_llama_parse_chat_with_comp(self):
pass

@pytest.mark.skip_if_no_key("gpt2_custom_connection")
def test_open_source_llm_llama_req_chat(self, gpt2_custom_connection):
def test_open_source_llm_llama_endpoint_miss(self, gpt2_custom_connection):
gpt2_custom_connection.configs['endpoint_url'] += 'completely/real/endpoint'
os = OpenSourceLLM(gpt2_custom_connection)
try:
Expand All @@ -148,7 +148,7 @@ def test_open_source_llm_llama_req_chat(self, gpt2_custom_connection):
pass

@pytest.mark.skip_if_no_key("gpt2_custom_connection")
def test_open_source_llm_llama_req_chat(self, gpt2_custom_connection):
def test_open_source_llm_llama_deployment_miss(self, gpt2_custom_connection):
os = OpenSourceLLM(gpt2_custom_connection)
try:
os.call(
Expand Down

0 comments on commit f0a38ec

Please sign in to comment.