From 31e882eb42741adeea637a34b48d573d31ee860d Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Fri, 18 Apr 2025 17:02:45 -0700 Subject: [PATCH] Remove test on coverage --- .../net/thauvin/erik/mobibot/modules/ChatGpt2Test.kt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/test/kotlin/net/thauvin/erik/mobibot/modules/ChatGpt2Test.kt b/src/test/kotlin/net/thauvin/erik/mobibot/modules/ChatGpt2Test.kt index c4699a5..ee3e534 100644 --- a/src/test/kotlin/net/thauvin/erik/mobibot/modules/ChatGpt2Test.kt +++ b/src/test/kotlin/net/thauvin/erik/mobibot/modules/ChatGpt2Test.kt @@ -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() {