From ea49993459ec5f3b11f5774a57c2444a58a9d752 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Mon, 25 Jun 2012 18:08:12 +0200 Subject: [PATCH] fix issue139 - make it possible to access funcargs from pytest_runtest_setup --- CHANGELOG | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index a6f487f6a..2e8ace0cf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,11 +1,11 @@ Changes between 2.2.4 and 2.3.0.dev ----------------------------------- -- merge FuncargRequest and Item API such that funcarg-functionality - is now natively available on the "item" object passed to the various - pytest_runtest hooks. This allows more sensitive behaviour - of e.g. the pytest-django plugin which previously had no full - access to all instantiated funcargs. +- fix issue139 - merge FuncargRequest and Item API such that + funcarg-functionality is now directly available on the "item" + object passed to the various pytest_runtest hooks. This allows more + sensitive behaviour of e.g. the pytest-django plugin which previously + had no full access to all instantiated funcargs. This internal API re-organisation is a fully backward compatible change: existing factories accepting a "request" object will get a Function "item" object which carries the same API. In fact,