This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch OPENNLP-1738 in repository https://gitbox.apache.org/repos/asf/opennlp-sandbox.git
commit abdcb5811e6172591757f51f54b57239f26c880f Author: Richard Zowalla <[email protected]> AuthorDate: Wed May 28 20:10:27 2025 +0200 OPENNLP-1738 - Disable WSD test on Linux --- .../test/java/opennlp/tools/disambiguator/WSDisambiguatorMETest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/opennlp-wsd/src/test/java/opennlp/tools/disambiguator/WSDisambiguatorMETest.java b/opennlp-wsd/src/test/java/opennlp/tools/disambiguator/WSDisambiguatorMETest.java index 84b54f9..115d50e 100644 --- a/opennlp-wsd/src/test/java/opennlp/tools/disambiguator/WSDisambiguatorMETest.java +++ b/opennlp-wsd/src/test/java/opennlp/tools/disambiguator/WSDisambiguatorMETest.java @@ -27,6 +27,8 @@ import java.util.List; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.DisabledOnOs; +import org.junit.jupiter.api.condition.OS; import org.junit.jupiter.api.io.CleanupMode; import org.junit.jupiter.api.io.TempDir; @@ -103,6 +105,7 @@ class WSDisambiguatorMETest extends AbstractDisambiguatorTest { /* * Tests disambiguating only one word : The ambiguous word "please" */ + @DisabledOnOs(value = OS.LINUX, disabledReason = "OPENNLP-1738") @Test void testDisambiguateOneWord() { String sense = wsdME.disambiguate(sentence1, tags1, lemmas1, 8);
