[svn r38051] Fix an option -s contradics -d
--HG-- branch : trunk
This commit is contained in:
parent
318a1c2333
commit
4fae2f581d
|
@ -29,6 +29,9 @@ class AbstractSession(Session):
|
||||||
if option.runbrowser and not option.startserver:
|
if option.runbrowser and not option.startserver:
|
||||||
#print "--runbrowser implies --startserver"
|
#print "--runbrowser implies --startserver"
|
||||||
option.startserver = True
|
option.startserver = True
|
||||||
|
if option.nocapture:
|
||||||
|
print "Cannot use nocapture with distributed testing"
|
||||||
|
sys.exit(1)
|
||||||
super(AbstractSession, self).fixoptions()
|
super(AbstractSession, self).fixoptions()
|
||||||
|
|
||||||
def init_reporter(self, reporter, hosts, reporter_class, arg=""):
|
def init_reporter(self, reporter, hosts, reporter_class, arg=""):
|
||||||
|
|
Loading…
Reference in New Issue