Skip to content

Commit

Permalink
Disable bad tests (Issue #14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Domander committed May 6, 2016
1 parent ca53db5 commit cf9a053
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public void testHildRuegPlate() {
assertEquals(0.0, smi, 0.05);
}

@Ignore // Test abuses GUI and fails on Jenkins server
@Test
public void testHildRuegSphere() {
final ImagePlus imp = TestDataMaker.sphere(256);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ public void testGetSurfaceVolumeImagePlusDoubleDoubleInt() {
assertArrayEquals(expectedBrick, vols, 200);
}

@Ignore // Test abuses GUI and fails on Jenkins server
@Test
public void testGetSurfaceVolumeImagePlusDoubleDoubleIntBooleanBoolean() {
//Mock a RoiManager with a roi that covers a quarter of the rod
Expand Down

1 comment on commit cf9a053

@rimadoma
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Better to ignore two tests then disable all automatic testing on the Jenkins server.
VolumeFraction and it's tests are going to be rewritten quite soon anyway

Please sign in to comment.