Skip to content

Commit

Permalink
No issue: Disable tests on windows due to https://bugs.openjdk.org/br…
Browse files Browse the repository at this point in the history
  • Loading branch information
reckart committed Aug 3, 2024
1 parent bf32211 commit 88ad1f3
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@

import org.dkpro.core.api.embeddings.binary.BinaryVectorizer;
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.TempDir;

@DisabledOnOs(value = OS.WINDOWS, //
disabledReason = "mmapped buffers cannot be unmapped explicitly, so we cannot delete the temp dir on Windows")
public class TextFormatVectorizerUtilsTest
{
@Test
Expand Down

0 comments on commit 88ad1f3

Please sign in to comment.