Skip to content
Snippets Groups Projects

Disable language autodetection test

1 file
+ 5
0
Compare changes
  • Side-by-side
  • Inline
@@ -15,6 +15,7 @@ import java.util.Set;
import nl.tudelft.ewi.auta.worker.config.WorkerSettings;
import org.apache.commons.compress.utils.IOUtils;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.mockito.Mockito;
@@ -73,7 +74,11 @@ public class JobSplitterTest {
assertThrows(BadJobException.class, () -> this.splitter.split(message));
}
/**
* Since installing github linguist on the CI is a pain, this test is disabled
*/
@Test
@Disabled
public void langDetectionTest() throws IOException {
// This test requires the autamatic language detection to function,
// which is probably not going to happen on windows.
Loading