File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 21
21
enabled. This allows proper post mortem debugging for all applications
22
22
which have significant logic in their tearDown machinery (`#1890 `_). Thanks
23
23
`@mbyt `_ for the PR.
24
+
25
+ * Fix use of deprecated ``getfuncargvalue `` method in the internal doctest plugin.
26
+ Thanks `@ViviCoder `_ for the report (`#1898 `_).
24
27
25
28
.. _@joguSD : https://github.com/joguSD
26
29
.. _@AiOO : https://github.com/AiOO
27
30
.. _@mbyt : https://github.com/mbyt
31
+ .. _@ViviCoder : https://github.com/ViviCoder
28
32
29
33
.. _#1857 : https://github.com/pytest-dev/pytest/issues/1857
30
34
.. _#1864 : https://github.com/pytest-dev/pytest/issues/1864
31
35
.. _#1888 : https://github.com/pytest-dev/pytest/issues/1888
32
36
.. _#1891 : https://github.com/pytest-dev/pytest/pull/1891
33
37
.. _#1890 : https://github.com/pytest-dev/pytest/issues/1890
38
+ .. _#1898 : https://github.com/pytest-dev/pytest/issues/1898
34
39
35
40
36
41
3.0.1
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ def setup(self):
88
88
if self .dtest is not None :
89
89
self .fixture_request = _setup_fixtures (self )
90
90
globs = dict (getfixture = self .fixture_request .getfixturevalue )
91
- for name , value in self .fixture_request .getfuncargvalue ('doctest_namespace' ).items ():
91
+ for name , value in self .fixture_request .getfixturevalue ('doctest_namespace' ).items ():
92
92
globs [name ] = value
93
93
self .dtest .globs .update (globs )
94
94
You can’t perform that action at this time.
0 commit comments