Skip to content

Commit 58f74ae

Browse files
committed
skip mpi related tests
1 parent 31a3a08 commit 58f74ae

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

tests/test_mkl_service.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -259,18 +259,21 @@ def test_verbose_false():
259259
def test_verbose_true():
260260
mkl.verbose(True)
261261

262-
#def test_set_mpi_custom():
263-
# mkl.set_mpi('custom', 'custom_library_name')
262+
@pytest.mark.skip(reason="Skipping MPI-related test")
263+
def test_set_mpi_custom():
264+
mkl.set_mpi('custom', 'custom_library_name')
264265

265-
@pytest.mark.skip
266+
@pytest.mark.skip(reason="Skipping MPI-related test")
266267
def test_set_mpi_msmpi():
267268
mkl.set_mpi('msmpi')
268269

269-
#def test_set_mpi_intelmpi():
270-
# mkl.set_mpi('intelmpi')
270+
@pytest.mark.skip(reason="Skipping MPI-related test")
271+
def test_set_mpi_intelmpi():
272+
mkl.set_mpi('intelmpi')
271273

272-
#def test_set_mpi_mpich2():
273-
# mkl.set_mpi('mpich2')
274+
@pytest.mark.skip(reason="Skipping MPI-related test")
275+
def test_set_mpi_mpich2():
276+
mkl.set_mpi('mpich2')
274277

275278

276279
def test_vml_set_get_mode_roundtrip():

0 commit comments

Comments
 (0)