From ff5c1b6611531ced6bdae9dab846e393577d727f Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 3 Jan 2010 14:52:26 +0100 Subject: [PATCH] add potential feature from py-dev discussion --HG-- branch : trunk --- ISSUES.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ISSUES.txt b/ISSUES.txt index 62b110b67..a0e826384 100644 --- a/ISSUES.txt +++ b/ISSUES.txt @@ -94,3 +94,14 @@ tags: 1.2 Packages with external dependencies should be moved out of the core distribution. Also figleaf could serve as another prototype for an external plugin. + +consider pytest_addsyspath hook +----------------------------------------- +tags: 1.2 + +py.test could call a new pytest_addsyspath() in order to systematically +allow manipulation of sys.path and to inhibit it via --no-addsyspath +in order to more easily run against installed packages. + +Alternatively it could also be done via the config object +and pytest_configure.