Skip to content
Snippets Groups Projects
Commit 8b0ec2fc authored by Alán Muñoz's avatar Alán Muñoz
Browse files

clean(test_pp): deactivate post_processing tests

parent a55d8dea
No related branches found
No related tags found
No related merge requests found
import pytest
import unittest import unittest
import matplotlib.pyplot as plt import matplotlib.pyplot as plt
...@@ -6,13 +7,13 @@ import skimage.morphology as morph ...@@ -6,13 +7,13 @@ import skimage.morphology as morph
from scipy import ndimage from scipy import ndimage
from skimage import draw from skimage import draw
from aliby.post_processing import ( # from aliby.post_processing import (
circle_outline, # circle_outline,
conical, # conical,
ellipse_perimeter, # ellipse_perimeter,
union_of_spheres, # union_of_spheres,
volume_of_sphere, # volume_of_sphere,
) # )
@pytest.mark.skip( @pytest.mark.skip(
...@@ -27,12 +28,18 @@ class VolumeEstimation(unittest.TestCase): ...@@ -27,12 +28,18 @@ class VolumeEstimation(unittest.TestCase):
print(radius, con, b_sum) print(radius, con, b_sum)
self.assertAlmostEqual(abs(con - b_sum) / b_sum, 0, delta=0.10) self.assertAlmostEqual(abs(con - b_sum) / b_sum, 0, delta=0.10)
@pytest.mark.skip(
reason="No longer usable, post_processing unused inside aliby. Kept temporarily"
)
def test_conical_ellipse(self): def test_conical_ellipse(self):
e = ellipse_perimeter(4, 5) e = ellipse_perimeter(4, 5)
con = conical(e) con = conical(e)
true = draw.ellipsoid_stats(4, 5, 4)[0] true = draw.ellipsoid_stats(4, 5, 4)[0]
print(con, true) print(con, true)
@pytest.mark.skip(
reason="No longer usable, post_processing unused inside aliby. Kept temporarily"
)
def test_sphere_error(self): def test_sphere_error(self):
radii = range(3, 30) radii = range(3, 30)
con = [conical(circle_outline(radius)) for radius in radii] con = [conical(circle_outline(radius)) for radius in radii]
...@@ -52,6 +59,9 @@ class VolumeEstimation(unittest.TestCase): ...@@ -52,6 +59,9 @@ class VolumeEstimation(unittest.TestCase):
plt.legend() plt.legend()
# plt.show() # plt.show()
@pytest.mark.skip(
reason="No longer usable, post_processing unused inside aliby. Kept temporarily"
)
def test_ellipse_error(self): def test_ellipse_error(self):
x_radii = range(3, 30) x_radii = range(3, 30)
y_radii = [np.ceil(2.5 * r) for r in x_radii] y_radii = [np.ceil(2.5 * r) for r in x_radii]
...@@ -86,6 +96,9 @@ class VolumeEstimation(unittest.TestCase): ...@@ -86,6 +96,9 @@ class VolumeEstimation(unittest.TestCase):
plt.legend() plt.legend()
# plt.show() # plt.show()
@pytest.mark.skip(
reason="No longer usable, post_processing unused inside aliby. Kept temporarily"
)
def test_minor_major_error(self): def test_minor_major_error(self):
r = np.random.choice(list(range(3, 30))) r = np.random.choice(list(range(3, 30)))
x_radii = np.linspace(r / 3, r, 20) x_radii = np.linspace(r / 3, r, 20)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment