[svn r38221] Reverting previous changes after a discussion with hpk.
--HG-- branch : trunk
This commit is contained in:
parent
4815c6de21
commit
d2f11081cb
|
@ -15,4 +15,15 @@ exitfirst = False
|
|||
fulltrace = False
|
||||
showlocals = False
|
||||
nomagic = False
|
||||
|
||||
import py
|
||||
Option = py.test.config.Option
|
||||
|
||||
option = py.test.config.addoptions("execnet options",
|
||||
Option('-S', '',
|
||||
action="store", dest="sshtarget", default=None,
|
||||
help=("target to run tests requiring ssh, e.g. "
|
||||
"user@codespeak.net")),
|
||||
)
|
||||
|
||||
dist_rsync_roots = ['.']
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
import py
|
||||
Option = py.test.config.Option
|
||||
|
||||
option = py.test.config.addoptions("execnet options",
|
||||
Option('-S', '',
|
||||
action="store", dest="sshtarget", default=None,
|
||||
help=("target to run tests requiring ssh, e.g. "
|
||||
"user@codespeak.net")),
|
||||
)
|
||||
|
|
@ -2,7 +2,7 @@ from __future__ import generators
|
|||
import os, sys, time, signal
|
||||
import py
|
||||
from py.__.execnet import gateway
|
||||
from py.__.execnet.conftest import option
|
||||
from py.__.conftest import option
|
||||
mypath = py.magic.autopath()
|
||||
|
||||
from StringIO import StringIO
|
||||
|
|
Loading…
Reference in New Issue