[svn r37300] Make clean complaints about lack of disthosts and call fixoptions if present.

--HG--
branch : trunk
This commit is contained in:
fijal
2007-01-24 22:05:33 +01:00
parent 13cb6854c1
commit 9dc7fbbd37
3 changed files with 24 additions and 1 deletions

View File

@@ -138,6 +138,22 @@ def parse_directories(sshhosts):
class RSession(AbstractSession):
""" Remote version of session
"""
def fixoptions(self):
config = self.config
try:
config.getvalue('disthosts')
except KeyError:
print "You're trying to run RSession without disthosts specified"
print "you need to specify it in your conftest.py (ie. ~/conftest.py)"
print "for example:"
print " disthosts = ['localhost'] * 4 # for 3 processors"
print " - or -"
print " disthosts = ['you@some.remote.com'] # for remote testing"
print " # with your remote ssh account"
print "http://codespeak.net/py/current/doc/test.html#automated-distributed-testing"
print " for more info..."
raise SystemExit
def main(self, reporter=None):
""" main loop for running tests. """
args = self.config.args