Skip to content

Commit c1fcb98

Browse files
Enabled mkl tests exclude "test_set_mpi_msmpi test"
1 parent a54c5a4 commit c1fcb98

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

mkl-service/tests/test_mkl_service.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525

2626

27+
from nose.tools import nottest
2728
import mkl
2829

2930

@@ -237,17 +238,18 @@ def test_verbose_false(self):
237238
def test_verbose_true(self):
238239
mkl.verbose(True)
239240

240-
# def test_set_mpi_custom(self):
241-
# mkl.set_mpi('custom', 'custom_library_name')
241+
def test_set_mpi_custom(self):
242+
mkl.set_mpi('custom', 'custom_library_name')
242243

243-
# def test_set_mpi_msmpi(self):
244-
# mkl.set_mpi('msmpi')
244+
@nottest
245+
def test_set_mpi_msmpi(self):
246+
mkl.set_mpi('msmpi')
245247

246-
# def test_set_mpi_intelmpi(self):
247-
# mkl.set_mpi('intelmpi')
248+
def test_set_mpi_intelmpi(self):
249+
mkl.set_mpi('intelmpi')
248250

249-
# def test_set_mpi_mpich2(self):
250-
# mkl.set_mpi('mpich2')
251+
def test_set_mpi_mpich2(self):
252+
mkl.set_mpi('mpich2')
251253

252254

253255
class test_vm_service_functions():

0 commit comments

Comments
 (0)