File tree 4 files changed +12
-2
lines changed
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,13 @@ Changes between 2.4.1 and 2.4.2
21
21
details of the node.keywords pseudo-dicts. Adapated
22
22
docs.
23
23
24
-
25
24
- remove attempt to "dup" stdout at startup as it's icky.
26
25
the normal capturing should catch enough possibilities
27
26
of tests messing up standard FDs.
28
27
28
+ - add pluginmanager.do_configure(config) as a link to
29
+ config.do_configure() for plugin-compatibility
30
+
29
31
Changes between 2.4.0 and 2.4.1
30
32
-----------------------------------
31
33
Original file line number Diff line number Diff line change @@ -76,6 +76,10 @@ def __init__(self, hookspecs=None):
76
76
self ._shutdown = []
77
77
self .hook = HookRelay (hookspecs or [], pm = self )
78
78
79
+ def do_configure (self , config ):
80
+ # backward compatibility
81
+ config .do_configure ()
82
+
79
83
def set_register_callback (self , callback ):
80
84
assert not hasattr (self , "_registercallback" )
81
85
self ._registercallback = callback
Original file line number Diff line number Diff line change @@ -9,8 +9,12 @@ cd ../pytest-instafail
9
9
py.test
10
10
cd ../pytest-cache
11
11
py.test
12
+ cd ../pytest-xprocess
13
+ py.test
12
14
# cd ../pytest-cov
13
15
# py.test
16
+ cd ../pytest-capturelog
17
+ py.test
14
18
cd ../pytest-xdist
15
19
py.test
16
20
Original file line number Diff line number Diff line change 3
3
4
4
long_description = open ("README.rst" ).read ()
5
5
def main ():
6
- install_requires = ["py>=1.4.17.dev2 " ]
6
+ install_requires = ["py>=1.4.17" ]
7
7
if sys .version_info < (2 ,7 ):
8
8
install_requires .append ("argparse" )
9
9
if sys .platform == "win32" :
You can’t perform that action at this time.
0 commit comments