fixes to various tests, related to execnet automatic ID generation and other bits.

also lowering the version as "1.1.1post1" for now.  1.1.2 is still a bit off.

--HG--
branch : trunk
This commit is contained in:
holger krekel
2009-12-24 19:43:14 +01:00
parent 98863d1d01
commit f254b6f7c1
9 changed files with 28 additions and 26 deletions

View File

@@ -16,9 +16,10 @@ def pytest_addoption(parser):
help="start pdb (the Python debugger) on errors.")
def pytest_configure(config):
def pytest_configure(__multicall__, config):
if config.option.usepdb:
if execnet:
__multicall__.execute()
if config.getvalue("looponfail"):
raise config.Error("--pdb incompatible with --looponfail.")
if config.option.dist != "no":