summaryrefslogtreecommitdiff
path: root/test/suite/wttest.py
diff options
context:
space:
mode:
authorDon Anderson <dda@ddanderson.com>2014-12-09 13:41:55 -0500
committerDon Anderson <dda@ddanderson.com>2014-12-09 13:41:55 -0500
commitdfe08280f0a437da565d6190acd369af4fec39b0 (patch)
treeca18c6f2a954ae97dbbd4124a794a6ee696c4fd8 /test/suite/wttest.py
parent7907694fe1a38612b958cf15be82082b3e356583 (diff)
downloadmongo-dfe08280f0a437da565d6190acd369af4fec39b0.tar.gz
Prepend third party libraries we supply to the front of the os.path list.
Refs #1394.
Diffstat (limited to 'test/suite/wttest.py')
-rw-r--r--test/suite/wttest.py9
1 files changed, 1 insertions, 8 deletions
diff --git a/test/suite/wttest.py b/test/suite/wttest.py
index 25bd71945f6..d1705434988 100644
--- a/test/suite/wttest.py
+++ b/test/suite/wttest.py
@@ -434,14 +434,7 @@ class WiredTigerTestCase(unittest.TestCase):
def runsuite(suite, parallel):
suite_to_run = suite
if parallel > 1:
- try:
- from concurrencytest import ConcurrentTestSuite, fork_for_tests
- except ImportError:
- print ('ERROR: additional python modules must be installed\n' +
- ' to use the "--parallel N" option. Consult\n' +
- ' the WiredTiger HOWTO:RunTheTestSuite wiki page.\n')
- raise
-
+ from concurrencytest import ConcurrentTestSuite, fork_for_tests
if not WiredTigerTestCase._globalSetup:
WiredTigerTestCase.globalSetup()
WiredTigerTestCase._concurrent = True