Remove test on coverage

This commit is contained in:
Erik C. Thauvin 2025-04-18 17:02:45 -07:00
parent 749334493b
commit 31e882eb42
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -47,15 +47,6 @@ class ChatGpt2Test : LocalProperties() {
.hasNoCause()
}
@Test
fun testChatOnCoverage() {
if (System.getenv("CI") == null || System.getenv("COVERAGE_JDK") != null) {
assertThat(
ChatGpt2.chat("how do I encode a URL in java?", getProperty(ChatGpt2.API_KEY_PROP), 60)
).contains("URLEncoder")
}
}
@Test
@DisableOnCi
fun testChat() {