From bb755ae00955576e4f56fbc0a9f7ad01f550789a Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 25 Nov 2009 19:50:39 +0100 Subject: [PATCH] starting an ISSUES.txt with a conftest issue --HG-- branch : trunk --- ISSUES.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ISSUES.txt diff --git a/ISSUES.txt b/ISSUES.txt new file mode 100644 index 000000000..46d9b66ff --- /dev/null +++ b/ISSUES.txt @@ -0,0 +1,18 @@ + +consider conftest hooks only for items below the dir +--------------------------------------------------------- +tags: bug + +currently conftest hooks remain registered throughout +the whole testing process. Consider to only have them +called if their filesystem location is below a test item. + + +introduce py.test.mark.ignoretest +------------------------------------------------------- +tags: feature + +for not considering a function for test collection at all. +maybe also introduce a py.test.mark.test to explicitely +mark a function to become a tested one. Lookup +Java JUnit recent strategies/syntax.