Add more test tags

master
agibsonccc 2021-03-27 20:24:58 +09:00
parent 1a8f360798
commit b193446070
7 changed files with 15 additions and 0 deletions

View File

@ -237,6 +237,8 @@ public class FastTextTest extends BaseDL4JTest {
}
@Test
@Disabled("Similarities seem arbitrary, needs verification")
@Tag(TagNames.NEEDS_VERIFY)
public void testWordsStatistics(@TempDir Path testDir) throws IOException {
File output = Files.createTempFile(testDir,"output","bin").toFile();

View File

@ -78,6 +78,8 @@ import static org.junit.jupiter.api.Assertions.*;
@NativeTag
@Tag(TagNames.LARGE_RESOURCES)
@Tag(TagNames.LONG_TEST)
@Tag(TagNames.NEEDS_VERIFY)
@Disabled("Permissions issues on CI")
public class SequenceVectorsTest extends BaseDL4JTest {
protected static final Logger logger = LoggerFactory.getLogger(SequenceVectorsTest.class);
@ -222,6 +224,7 @@ public class SequenceVectorsTest extends BaseDL4JTest {
}
@Test
public void testInternalVocabConstruction() throws Exception {
ClassPathResource resource = new ClassPathResource("big/raw_sentences.txt");
File file = resource.getFile();

View File

@ -52,6 +52,8 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
@Tag(TagNames.FILE_IO)
@NativeTag
@Tag(TagNames.LONG_TEST)
@Tag(TagNames.LARGE_RESOURCES)
public class ParallelWrapperTest extends BaseDL4JTest {
private static final Logger log = LoggerFactory.getLogger(ParallelWrapperTest.class);

View File

@ -54,6 +54,8 @@ import java.util.concurrent.atomic.AtomicInteger;
import static org.junit.jupiter.api.Assertions.assertEquals;
@Tag(TagNames.FILE_IO)
@NativeTag
@Tag(TagNames.LONG_TEST)
@Tag(TagNames.LARGE_RESOURCES)
public class TestListeners extends BaseDL4JTest {
@Test

View File

@ -53,6 +53,8 @@ import java.util.concurrent.TimeUnit;
import static org.junit.jupiter.api.Assertions.*;
@Tag(TagNames.FILE_IO)
@NativeTag
@Tag(TagNames.LONG_TEST)
@Tag(TagNames.LARGE_RESOURCES)
public class TestParallelEarlyStopping extends BaseDL4JTest {
// parallel training results vary wildly with expected result

View File

@ -53,6 +53,8 @@ import static org.junit.jupiter.api.Assertions.assertEquals;
@Tag(TagNames.FILE_IO)
@NativeTag
@Tag(TagNames.LONG_TEST)
@Tag(TagNames.LARGE_RESOURCES)
public class TestParallelEarlyStoppingUI extends BaseDL4JTest {
@Test

View File

@ -54,6 +54,8 @@ import java.nio.file.Path;
@Disabled("Permissions issues on CI")
@Tag(TagNames.FILE_IO)
@NativeTag
@Tag(TagNames.LONG_TEST)
@Tag(TagNames.LARGE_RESOURCES)
public class ParallelWrapperMainTest extends BaseDL4JTest {