This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opennlp-sandbox.git
The following commit(s) were added to refs/heads/main by this push:
new ba05b7f OPENNLP-1738 - Disable WSD test on Linux
ba05b7f is described below
commit ba05b7ff9d715d43490c11acb4ffdc5f3b2ae44a
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);