Skip to content

Commit

Permalink
Require KNIME 3.3 and higher version of testing plugin.
Browse files Browse the repository at this point in the history
Re-enabled log checking.
  • Loading branch information
sverhoeven committed Jun 8, 2017
1 parent c8aa49b commit ee62d9a
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 21 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Formatted as described on http://keepachangelog.com/
- Node to fetch pharmacophore from local db file (#12)
- Node to fetch pharmacophore from webservice (#12)

### Changed

- Require KNIME 3.3

## [2.2.1] - 2017-03-07

### Fixes
Expand Down
8 changes: 4 additions & 4 deletions plugin/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ Bundle-SymbolicName: nl.esciencecenter.e3dchem.kripodb.plugin;singleton:=true
Bundle-Version: 2.2.1.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Bundle-Activator: nl.esciencecenter.e3dchem.kripodb.Activator
Require-Bundle: org.knime.core;bundle-version="[3.1.0,4.0.0)",
org.knime.base;bundle-version="[3.1.0,4.0.0)",
org.knime.python;bundle-version="[3.1.0,4.0.0)",
org.knime.chem.types;bundle-version="[3.1.0,4.0.0)",
Require-Bundle: org.knime.core;bundle-version="[3.3.0,4.0.0)",
org.knime.base;bundle-version="[3.3.0,4.0.0)",
org.knime.python;bundle-version="[3.3.0,4.0.0)",
org.knime.chem.types;bundle-version="[3.3.0,4.0.0)",
org.rdkit.knime.types;bundle-version="[3.0.0,4.0.0)",
nl.esciencecenter.e3dchem.python.plugin;bundle-version="[1.1.0,2.0.0)",
nl.esciencecenter.e3dchem.plugin;bundle-version="[1.0.0,2.0.0)"
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</prerequisites>

<properties>
<knime.version>3.1</knime.version>
<knime.version>3.3</knime.version>
<knime.update.site>http://update.knime.org/analytics-platform/${knime.version}/</knime.update.site>
<knime.community.trusted.update.site>http://update.knime.org/community-contributions/trusted/${knime.version}/</knime.community.trusted.update.site>
<tycho.version>1.0.0</tycho.version>
Expand Down
10 changes: 5 additions & 5 deletions tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Bundle-SymbolicName: nl.esciencecenter.e3dchem.kripodb.tests
Bundle-Version: 2.2.1.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: org.junit;bundle-version="4.12.0",
org.knime.core;bundle-version="[3.1.0,4.0.0)",
org.knime.base;bundle-version="[3.1.0,4.0.0)",
org.knime.testing;bundle-version="[3.1.0,4.0.0)",
org.knime.python;bundle-version="[3.1.0,4.0.0)",
nl.esciencecenter.e3dchem.knime.testing.plugin;bundle-version="[1.0.0,2.0.0)",
org.knime.core;bundle-version="[3.3.0,4.0.0)",
org.knime.base;bundle-version="[3.3.0,4.0.0)",
org.knime.testing;bundle-version="[3.3.0,4.0.0)",
org.knime.python;bundle-version="[3.3.0,4.0.0)",
nl.esciencecenter.e3dchem.knime.testing.plugin;bundle-version="[1.0.2,2.0.0)",
nl.esciencecenter.e3dchem.python.plugin;bundle-version="[1.1.0,2.0.0)",
nl.esciencecenter.e3dchem.kripodb.plugin
Bundle-Vendor: Netherlands eScience Center
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,6 @@ public void test_default() throws IOException, InvalidSettingsException, Cancele
@Test
public void test_pdb() throws IOException, InvalidSettingsException, CanceledExecutionException,
UnsupportedWorkflowVersionException, LockFailedException, InterruptedException {
TestrunConfiguration runConfiguration = new TestrunConfiguration();
runConfiguration.setTestDialogs(true);
runConfiguration.setAllowedMemoryIncrease(4096000);
runConfiguration.setLoadSaveLoad(false);
runConfiguration.setCheckLogMessages(false);
runner = new TestFlowRunner(collector, runConfiguration);
runTestWorkflow("src/knime/kripo-fragment-information-test-pdb");
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,6 @@ public void test_fragmentInformation() throws IOException, InvalidSettingsExcept
public void test_pharmacophores() throws IOException, InvalidSettingsException, CanceledExecutionException,
UnsupportedWorkflowVersionException, LockFailedException, InterruptedException {
TestrunConfiguration runConfiguration = new TestrunConfiguration();
runConfiguration.setTestDialogs(true);
runConfiguration.setLoadSaveLoad(false);
runConfiguration.setCheckLogMessages(false);
runner = new TestFlowRunner(collector, runConfiguration);

File workflowDir = new File("src/knime/kripo-java-pharmacophore-test");
runner.runTestWorkflow(workflowDir);
}
Expand Down

0 comments on commit ee62d9a

Please sign in to comment.