diff options
-rw-r--r-- | buildscripts/resmokelib/testing/fixtures/external.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/buildscripts/resmokelib/testing/fixtures/external.py b/buildscripts/resmokelib/testing/fixtures/external.py index 091059f68bd..f5c1a59ca30 100644 --- a/buildscripts/resmokelib/testing/fixtures/external.py +++ b/buildscripts/resmokelib/testing/fixtures/external.py @@ -6,6 +6,10 @@ from . import interface class ExternalFixture(interface.Fixture): """Fixture which provides JSTests capability to connect to external (non-resmoke) cluster.""" + def pids(self): + """:return: no pids are owned by this fixture.""" + return [] + def __init__(self, logger, job_num, shell_conn_string=None): """Initialize ExternalFixture.""" interface.Fixture.__init__(self, logger, job_num) |