From 4b1db63b35200085bf52fcb65a4aa54c9b5ac373 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Sun, 20 Dec 2009 22:11:36 +0100 Subject: [PATCH] add some issues --HG-- branch : trunk --- ISSUES.txt | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) diff --git a/ISSUES.txt b/ISSUES.txt index 0a2aa8cea..b242e373b 100644 --- a/ISSUES.txt +++ b/ISSUES.txt @@ -8,7 +8,7 @@ the whole testing process. Consider to only have them called if their filesystem location is below a test item. -introduce py.test.mark.ignoretest +introduce py.test.mark.nocollect ------------------------------------------------------- tags: feature @@ -17,6 +17,43 @@ maybe also introduce a py.test.mark.test to explicitely mark a function to become a tested one. Lookup Java JUnit recent strategies/syntax. +capture plugin: skip on missing os.dup for 'capfd' +-------------------------------------------------------- + +tags: feature + +Currrently for Jython one needs do an explicit skip like this: + + @py.test.mark.skipif("not hasattr(os, 'dup')") + +to avoid a failure when 'capfd' is used. Instead +provide an automatic skip. + + +have imported module mismatch honour relative paths +-------------------------------------------------------- +tags: bug + +With 1.1.1 py.test fails at least on windows if an import +is relative and compared against an absolute conftest.py +path. Normalize. + +allow plugins/conftests to show extra header information +-------------------------------------------------------- +tags: feature + +The test-report header should optionally show information +about the under-test package and versions/locations of +involved packages. + +install py.test with interpreter-specific prefixes +-------------------------------------------------------- +tags: feature + +When installing under python3, jython or pypy-c it is +desirable to (additionally?) install py.test with +respective suffixes. + make node._checkcollectable more robust ------------------------------------------------- tags: bug 1.1.2