diff --git a/tests/regression_tests/mg_basic/test.py b/tests/regression_tests/mg_basic/test.py index 9f3fda4bb..7b456bb9d 100644 --- a/tests/regression_tests/mg_basic/test.py +++ b/tests/regression_tests/mg_basic/test.py @@ -82,8 +82,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -#import pytest -#@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mg_basic(): create_library() mat_names = ['base leg', 'base tab', 'base hist', 'base matrix', diff --git a/tests/regression_tests/mg_basic_delayed/test.py b/tests/regression_tests/mg_basic_delayed/test.py index 7498eecda..5ac460034 100644 --- a/tests/regression_tests/mg_basic_delayed/test.py +++ b/tests/regression_tests/mg_basic_delayed/test.py @@ -119,8 +119,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mg_basic_delayed(): create_library() model = slab_mg(num_regions=6, mat_names=['vec beta', 'vec no beta', diff --git a/tests/regression_tests/mg_convert/test.py b/tests/regression_tests/mg_convert/test.py index e4cd6c368..4cc6b656a 100755 --- a/tests/regression_tests/mg_convert/test.py +++ b/tests/regression_tests/mg_convert/test.py @@ -193,8 +193,6 @@ class MGXSTestHarness(PyAPITestHarness): self._cleanup() -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mg_convert(): harness = MGXSTestHarness('statepoint.10.h5') harness.main() diff --git a/tests/regression_tests/mg_legendre/test.py b/tests/regression_tests/mg_legendre/test.py index 125768fed..b5a05c706 100644 --- a/tests/regression_tests/mg_legendre/test.py +++ b/tests/regression_tests/mg_legendre/test.py @@ -46,8 +46,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mg_legendre(): create_library() model = slab_mg() diff --git a/tests/regression_tests/mg_max_order/test.py b/tests/regression_tests/mg_max_order/test.py index ff2ad450e..97d3f57d7 100644 --- a/tests/regression_tests/mg_max_order/test.py +++ b/tests/regression_tests/mg_max_order/test.py @@ -46,8 +46,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mg_max_order(): create_library() model = slab_mg() diff --git a/tests/regression_tests/mg_survival_biasing/test.py b/tests/regression_tests/mg_survival_biasing/test.py index 2411faddc..5d75611a9 100644 --- a/tests/regression_tests/mg_survival_biasing/test.py +++ b/tests/regression_tests/mg_survival_biasing/test.py @@ -46,8 +46,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mg_survival_biasing(): create_library() model = slab_mg() diff --git a/tests/regression_tests/mg_tallies/test.py b/tests/regression_tests/mg_tallies/test.py index 24c55f351..f4e9693f6 100644 --- a/tests/regression_tests/mg_tallies/test.py +++ b/tests/regression_tests/mg_tallies/test.py @@ -57,8 +57,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mg_tallies(): create_library() model = slab_mg() diff --git a/tests/regression_tests/mgxs_library_ce_to_mg/test.py b/tests/regression_tests/mgxs_library_ce_to_mg/test.py index 43ef38034..72f052e68 100644 --- a/tests/regression_tests/mgxs_library_ce_to_mg/test.py +++ b/tests/regression_tests/mgxs_library_ce_to_mg/test.py @@ -77,8 +77,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_ce_to_mg(): # Set the input set to use the pincell model model = pwr_pin_cell() diff --git a/tests/regression_tests/mgxs_library_ce_to_mg_nuclides/test.py b/tests/regression_tests/mgxs_library_ce_to_mg_nuclides/test.py index eca1a7e41..b624140d4 100644 --- a/tests/regression_tests/mgxs_library_ce_to_mg_nuclides/test.py +++ b/tests/regression_tests/mgxs_library_ce_to_mg_nuclides/test.py @@ -77,8 +77,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_ce_to_mg(): # Set the input set to use the pincell model model = pwr_pin_cell() diff --git a/tests/regression_tests/mgxs_library_condense/test.py b/tests/regression_tests/mgxs_library_condense/test.py index de3993665..167772e2f 100644 --- a/tests/regression_tests/mgxs_library_condense/test.py +++ b/tests/regression_tests/mgxs_library_condense/test.py @@ -60,8 +60,6 @@ class MGXSTestHarness(PyAPITestHarness): return outstr -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_condense(): # Use the pincell model model = pwr_pin_cell() diff --git a/tests/regression_tests/mgxs_library_correction/test.py b/tests/regression_tests/mgxs_library_correction/test.py index 6c0724399..05eedfef8 100644 --- a/tests/regression_tests/mgxs_library_correction/test.py +++ b/tests/regression_tests/mgxs_library_correction/test.py @@ -57,8 +57,6 @@ class MGXSTestHarness(PyAPITestHarness): return outstr -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_correction(): model = pwr_pin_cell() harness = MGXSTestHarness('statepoint.10.h5', model) diff --git a/tests/regression_tests/mgxs_library_distribcell/test.py b/tests/regression_tests/mgxs_library_distribcell/test.py index 6aa587c0b..5290d313b 100644 --- a/tests/regression_tests/mgxs_library_distribcell/test.py +++ b/tests/regression_tests/mgxs_library_distribcell/test.py @@ -64,8 +64,6 @@ class MGXSTestHarness(PyAPITestHarness): return outstr -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_distribcell(): model = pwr_assembly() harness = MGXSTestHarness('statepoint.10.h5', model) diff --git a/tests/regression_tests/mgxs_library_hdf5/test.py b/tests/regression_tests/mgxs_library_hdf5/test.py index b24fc4119..9811ab215 100644 --- a/tests/regression_tests/mgxs_library_hdf5/test.py +++ b/tests/regression_tests/mgxs_library_hdf5/test.py @@ -73,8 +73,6 @@ class MGXSTestHarness(PyAPITestHarness): os.remove(f) -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_hdf5(): try: np.set_printoptions(formatter={'float_kind': '{:.8e}'.format}) diff --git a/tests/regression_tests/mgxs_library_histogram/test.py b/tests/regression_tests/mgxs_library_histogram/test.py index b637c5eba..b9905910a 100644 --- a/tests/regression_tests/mgxs_library_histogram/test.py +++ b/tests/regression_tests/mgxs_library_histogram/test.py @@ -58,8 +58,6 @@ class MGXSTestHarness(PyAPITestHarness): return outstr -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_histogram(): model = pwr_pin_cell() harness = MGXSTestHarness('statepoint.10.h5', model) diff --git a/tests/regression_tests/mgxs_library_mesh/test.py b/tests/regression_tests/mgxs_library_mesh/test.py index 561b45585..3660d3eb7 100644 --- a/tests/regression_tests/mgxs_library_mesh/test.py +++ b/tests/regression_tests/mgxs_library_mesh/test.py @@ -90,8 +90,6 @@ class MGXSTestHarness(PyAPITestHarness): return outstr -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_mesh(model): harness = MGXSTestHarness('statepoint.5.h5', model) harness.main() diff --git a/tests/regression_tests/mgxs_library_no_nuclides/test.py b/tests/regression_tests/mgxs_library_no_nuclides/test.py index ae0693985..506ac238f 100644 --- a/tests/regression_tests/mgxs_library_no_nuclides/test.py +++ b/tests/regression_tests/mgxs_library_no_nuclides/test.py @@ -57,8 +57,6 @@ class MGXSTestHarness(PyAPITestHarness): return outstr -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_no_nuclides(): model = pwr_pin_cell() harness = MGXSTestHarness('statepoint.10.h5', model) diff --git a/tests/regression_tests/mgxs_library_nuclides/test.py b/tests/regression_tests/mgxs_library_nuclides/test.py index e4b01f14a..c64c27709 100644 --- a/tests/regression_tests/mgxs_library_nuclides/test.py +++ b/tests/regression_tests/mgxs_library_nuclides/test.py @@ -53,8 +53,6 @@ class MGXSTestHarness(PyAPITestHarness): return outstr -import pytest -@pytest.mark.skip(reason="MG not planned for GPU support.") def test_mgxs_library_nuclides(): model = pwr_pin_cell() harness = MGXSTestHarness('statepoint.10.h5', model)