add pluginmanager.do_configure(config) as a link to
config.do_configure() for plugin-compatibility add some more plugins to plugin-test.sh
This commit is contained in:
parent
0780f2573f
commit
19a76337a4
|
@ -21,11 +21,13 @@ Changes between 2.4.1 and 2.4.2
|
|||
details of the node.keywords pseudo-dicts. Adapated
|
||||
docs.
|
||||
|
||||
|
||||
- remove attempt to "dup" stdout at startup as it's icky.
|
||||
the normal capturing should catch enough possibilities
|
||||
of tests messing up standard FDs.
|
||||
|
||||
- add pluginmanager.do_configure(config) as a link to
|
||||
config.do_configure() for plugin-compatibility
|
||||
|
||||
Changes between 2.4.0 and 2.4.1
|
||||
-----------------------------------
|
||||
|
||||
|
|
|
@ -76,6 +76,10 @@ class PluginManager(object):
|
|||
self._shutdown = []
|
||||
self.hook = HookRelay(hookspecs or [], pm=self)
|
||||
|
||||
def do_configure(self, config):
|
||||
# backward compatibility
|
||||
config.do_configure()
|
||||
|
||||
def set_register_callback(self, callback):
|
||||
assert not hasattr(self, "_registercallback")
|
||||
self._registercallback = callback
|
||||
|
|
|
@ -9,8 +9,12 @@ cd ../pytest-instafail
|
|||
py.test
|
||||
cd ../pytest-cache
|
||||
py.test
|
||||
cd ../pytest-xprocess
|
||||
py.test
|
||||
#cd ../pytest-cov
|
||||
#py.test
|
||||
cd ../pytest-capturelog
|
||||
py.test
|
||||
cd ../pytest-xdist
|
||||
py.test
|
||||
|
||||
|
|
Loading…
Reference in New Issue