diff --git a/tests/regression_tests/cad/__init__.py b/tests/regression_tests/cad/__init__.py new file mode 100644 index 0000000000..5871ed8eef --- /dev/null +++ b/tests/regression_tests/cad/__init__.py @@ -0,0 +1 @@ +import pytest diff --git a/tests/unit_tests/cad/conftest.py b/tests/regression_tests/cad/conftest.py similarity index 100% rename from tests/unit_tests/cad/conftest.py rename to tests/regression_tests/cad/conftest.py diff --git a/tests/unit_tests/cad/dagmc.h5m b/tests/regression_tests/cad/dagmc.h5m similarity index 100% rename from tests/unit_tests/cad/dagmc.h5m rename to tests/regression_tests/cad/dagmc.h5m diff --git a/tests/unit_tests/cad/materials.xml b/tests/regression_tests/cad/materials.xml similarity index 100% rename from tests/unit_tests/cad/materials.xml rename to tests/regression_tests/cad/materials.xml diff --git a/tests/unit_tests/cad/settings.xml b/tests/regression_tests/cad/settings.xml similarity index 100% rename from tests/unit_tests/cad/settings.xml rename to tests/regression_tests/cad/settings.xml diff --git a/tests/unit_tests/cad/tallies.xml b/tests/regression_tests/cad/tallies.xml similarity index 100% rename from tests/unit_tests/cad/tallies.xml rename to tests/regression_tests/cad/tallies.xml diff --git a/tests/unit_tests/cad/test_cad.py b/tests/regression_tests/cad/test.py similarity index 100% rename from tests/unit_tests/cad/test_cad.py rename to tests/regression_tests/cad/test.py diff --git a/tests/unit_tests/cad/__init__.py b/tests/unit_tests/cad/__init__.py deleted file mode 100644 index 59a520c12a..0000000000 --- a/tests/unit_tests/cad/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -import numpy as np -import pytest - - -def assert_unbounded(obj): - """Assert that a region/cell is unbounded.""" - ll, ur = obj.bounding_box - assert ll == pytest.approx((-np.inf, -np.inf, -np.inf)) - assert ur == pytest.approx((np.inf, np.inf, np.inf))