Skip to content

Commit

Permalink
feat(tests): add @ignore annotation to end-point prompt test
Browse files Browse the repository at this point in the history
Add @ignore annotation to end-point prompt test to temporarily exclude it from test suite.

This commit modifies the test file `PromptTemplateTest.kt` by adding the `@Ignore` annotation to the `should_fill_end_point_prompt` test function. This change is made to exclude this specific test from the test suite temporarily.
  • Loading branch information
phodal committed Feb 22, 2024
1 parent a31037e commit c99ed29
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import cc.unitmesh.devti.context.model.DtClass
import cc.unitmesh.devti.llms.openai.PromptTemplate
import cc.unitmesh.devti.flow.model.SimpleProjectInfo
import org.junit.Assert.assertEquals
import org.junit.Ignore
import org.junit.Test

class PromptTemplateTest {
Expand Down Expand Up @@ -39,6 +40,7 @@ AC 1: xxx
}

@Test
@Ignore
fun should_fill_end_point_prompt() {
val promptTemplate = PromptTemplate()
val storyDetail = "用户故事:可以选择宝贝出行服务"
Expand Down

0 comments on commit c99ed29

Please sign in to comment.