|
18 | 18 |
|
19 | 19 | import com.google.common.io.Files;
|
20 | 20 | import io.seqware.cli.Main;
|
21 |
| -import java.io.File; |
22 |
| -import java.io.IOException; |
23 | 21 | import net.sourceforge.seqware.common.module.ReturnValue;
|
24 | 22 | import net.sourceforge.seqware.common.util.Log;
|
25 | 23 | import net.sourceforge.seqware.pipeline.plugins.ExtendedTestDatabaseCreator;
|
26 | 24 | import net.sourceforge.seqware.pipeline.plugins.ITUtility;
|
27 | 25 | import org.junit.Assert;
|
28 | 26 | import org.junit.BeforeClass;
|
29 |
| -import org.junit.Ignore; |
30 | 27 | import org.junit.Test;
|
31 | 28 |
|
| 29 | +import java.io.File; |
| 30 | +import java.io.IOException; |
| 31 | + |
32 | 32 | /**
|
33 | 33 | * These tests support the tutorial for BasicDeciders
|
34 | 34 | *
|
35 | 35 | * Causes issues with Travis-CI?
|
36 | 36 | *
|
37 | 37 | * @author dyuen
|
38 | 38 | */
|
39 |
| -public class BasicDeciderTutorialET { |
| 39 | +public class BasicDeciderTutorialLT { |
40 | 40 |
|
41 | 41 | @BeforeClass
|
42 | 42 | public static void resetDatabase() {
|
43 | 43 | ExtendedTestDatabaseCreator.resetDatabaseWithUsers(false);
|
44 | 44 | }
|
45 | 45 |
|
46 | 46 | @Test
|
47 |
| - @Ignore("see https://github.com/SeqWare/seqware/issues/324") |
48 | 47 | public void runThroughTutorial() throws IOException {
|
49 | 48 | // create some top level metadata
|
50 | 49 | Main main = new Main();
|
@@ -111,9 +110,9 @@ public void runThroughTutorial() throws IOException {
|
111 | 110 | Log.info(genOutput);
|
112 | 111 |
|
113 | 112 | // Replace contents of WorkflowClient from both workflows with code from tutorial
|
114 |
| - String tarTemplatePath = BasicDeciderTutorialET.class.getResource("TarWorkflow.template").getPath(); |
115 |
| - String gzTemplatePath = BasicDeciderTutorialET.class.getResource("GZWorkflow.template").getPath(); |
116 |
| - String workflowIniTemplatePath = BasicDeciderTutorialET.class.getResource("workflowini.template").getPath(); |
| 113 | + String tarTemplatePath = BasicDeciderTutorialLT.class.getResource("TarWorkflow.template").getPath(); |
| 114 | + String gzTemplatePath = BasicDeciderTutorialLT.class.getResource("GZWorkflow.template").getPath(); |
| 115 | + String workflowIniTemplatePath = BasicDeciderTutorialLT.class.getResource("workflowini.template").getPath(); |
117 | 116 | // determine existing file paths
|
118 | 117 | File tarTarget = new File(tempDir, "Tar/src/main/java/com/github/seqware/TarWorkflow.java");
|
119 | 118 | File gzTarget = new File(tempDir, "GZ/src/main/java/com/github/seqware/GZWorkflow.java");
|
|
0 commit comments