Skip to content

Commit

Permalink
skip mpi related tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ekomarova committed Feb 9, 2024
1 parent 31a3a08 commit 58f74ae
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions tests/test_mkl_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,18 +259,21 @@ def test_verbose_false():
def test_verbose_true():
mkl.verbose(True)

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

@pytest.mark.skip
@pytest.mark.skip(reason="Skipping MPI-related test")
def test_set_mpi_msmpi():
mkl.set_mpi('msmpi')

#def test_set_mpi_intelmpi():
# mkl.set_mpi('intelmpi')
@pytest.mark.skip(reason="Skipping MPI-related test")
def test_set_mpi_intelmpi():
mkl.set_mpi('intelmpi')

#def test_set_mpi_mpich2():
# mkl.set_mpi('mpich2')
@pytest.mark.skip(reason="Skipping MPI-related test")
def test_set_mpi_mpich2():
mkl.set_mpi('mpich2')


def test_vml_set_get_mode_roundtrip():
Expand Down

0 comments on commit 58f74ae

Please sign in to comment.