2009-11-26 02:50:39 +08:00
|
|
|
|
|
|
|
consider conftest hooks only for items below the dir
|
|
|
|
---------------------------------------------------------
|
2009-12-07 02:18:53 +08:00
|
|
|
tags: bug 1.1.2
|
2009-11-26 02:50:39 +08:00
|
|
|
|
|
|
|
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.
|
2009-12-07 02:18:53 +08:00
|
|
|
|
|
|
|
make node._checkcollectable more robust
|
|
|
|
-------------------------------------------------
|
|
|
|
tags: bug 1.1.2
|
|
|
|
|
|
|
|
currently node._checkcollectable() can raise
|
|
|
|
exceptions for all kinds of reasons ('conftest.py' loading
|
|
|
|
problems, missing rsync-dirs, platform-skip-at-import-level
|
|
|
|
issues, ...). It should just return True/False and cause
|
|
|
|
a good error message.
|
|
|
|
|
|
|
|
call termination with small timeout
|
|
|
|
-------------------------------------------------
|
|
|
|
tags: feature 1.1.2
|
|
|
|
|
|
|
|
Call gateway group termination with a small timeout if available.
|
|
|
|
Should make dist-testing less likely to leave lost processes.
|
2009-12-07 20:27:24 +08:00
|
|
|
|
|
|
|
make capfd skip if 'dup' is not available
|
|
|
|
-------------------------------------------------------
|
|
|
|
|
|
|
|
tags: feature 1.1.2
|
|
|
|
|
|
|
|
currently, using 'capfd' as a funcarg will fail because
|
|
|
|
it cannot call os.dup on setup. Should cause a skip.
|
|
|
|
|
|
|
|
introduce multi-install, i.e. py.test3, py.test-pypy, py.test-jython
|
|
|
|
and maybe a commandline-"suffix" override?
|