summaryrefslogtreecommitdiff
path: root/ISSUES.txt
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2013-08-01 10:43:02 +0200
committerholger krekel <holger@merlinux.eu>2013-08-01 10:43:02 +0200
commit23855537904f1e3734864e50b947dca1197b1337 (patch)
treea9220c5849a47f0f3ae4bc9dd4dee1997ee68658 /ISSUES.txt
parent4c6a11b8e12614406b2bf6282a9fc39dcc6f21bf (diff)
downloadpytest-23855537904f1e3734864e50b947dca1197b1337.tar.gz
no funcargs for setup functions, rather use autouse fixtures.
Diffstat (limited to 'ISSUES.txt')
-rw-r--r--ISSUES.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/ISSUES.txt b/ISSUES.txt
index b5617e82c..5c8f1da4c 100644
--- a/ISSUES.txt
+++ b/ISSUES.txt
@@ -200,28 +200,6 @@ to further reduce py.test globality. Also consider
having py.test.config and ensuretemp coming from
a plugin rather than being there from the start.
-consider allowing funcargs for setup methods
---------------------------------------------------------------
-tags: experimental-wish
-
-Users have expressed the wish to have funcargs available to setup
-functions. Experiment with allowing funcargs there - it might
-also help to make the py.test.ensuretemp and config deprecation.
-For filling funcargs for setup methods, we could call funcarg
-factories with a request object that not have a cls/function
-attributes. However, how to handle parametrized test functions
-and funcargs?
-
-maybe introduce a setup method like:
-
- setup_invocation(self, request)
-
-which has full access to the test invocation through "request"
-through which you can get funcargvalues, use cached_setup etc.
-Therefore, the access to funcargs would be indirect but it
-could be consistently implemented. setup_invocation() would
-be a "glue" function for bringing together the xUnit and funcargs
-world.
consider pytest_addsyspath hook
-----------------------------------------