Skip to content

Commit

Permalink
We don't currently provide MPI for Python 3.
Browse files Browse the repository at this point in the history
Our RPMs don't currently include a Python 3 & MPI
package, so we should skip Python 3 tests of MPI
components for now.
  • Loading branch information
benmwebb committed Aug 8, 2017
1 parent c4db823 commit 6c58985
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/nightly-tests/test-install/test_mpi.py
@@ -1,10 +1,14 @@
import unittest
import sys
import subprocess

class Tests(unittest.TestCase):

def test_modules_installed(self):
"""Check MPI-dependent Python modules"""
# No IMP-python3-mpich package currently
if sys.version_info[0] >= 3:
self.skipTest("No Python3 support for MPI yet")
import IMP.mpi
import IMP.spb

Expand Down

0 comments on commit 6c58985

Please sign in to comment.