note down two issues after having helped prologic - also related to
earlier discussions with ronny and others. --HG-- branch : trunk
This commit is contained in:
parent
a2fbe31a26
commit
18b5ddc4dd
20
ISSUES.txt
20
ISSUES.txt
|
@ -17,6 +17,26 @@ with documentation and add "py.test --marks" to get
|
||||||
a list of available marks. Deprecate "dynamic" mark
|
a list of available marks. Deprecate "dynamic" mark
|
||||||
definitions.
|
definitions.
|
||||||
|
|
||||||
|
do early-teardown of test modules
|
||||||
|
-----------------------------------------
|
||||||
|
tags: feature 1.3
|
||||||
|
|
||||||
|
currently teardowns are called when the next tests is setup
|
||||||
|
except for the function/method level where interally
|
||||||
|
"teardown_exact" tears down immediately. Generalize
|
||||||
|
this to perform the "neccessary" teardown compared to
|
||||||
|
the "next" test item during teardown - this should
|
||||||
|
get rid of some irritations because otherwise e.g.
|
||||||
|
prints of teardown-code appear in the setup of the next test.
|
||||||
|
|
||||||
|
do recursive walk of conftest.py files?
|
||||||
|
-----------------------------------------
|
||||||
|
tags: feature 1.3
|
||||||
|
|
||||||
|
it maybe makes sense to generally do a recursive search of conftest.py
|
||||||
|
files before command line parsing - this would help to offer the
|
||||||
|
full list of options as applicable to a given test project.
|
||||||
|
|
||||||
consider introducing py.test.mark.skip_[not]win32/jython/pyXY
|
consider introducing py.test.mark.skip_[not]win32/jython/pyXY
|
||||||
-------------------------------------------------------------
|
-------------------------------------------------------------
|
||||||
tags: feature 1.3
|
tags: feature 1.3
|
||||||
|
|
|
@ -7,6 +7,13 @@ Talks and Tutorials
|
||||||
tutorial examples and blog postings
|
tutorial examples and blog postings
|
||||||
---------------------------------------------
|
---------------------------------------------
|
||||||
|
|
||||||
|
.. _`tutorial1 repository`: http://bitbucket.org/hpk42/pytest-tutorial1/
|
||||||
|
.. _`pycon 2010 tutorial PDF`: http://bitbucket.org/hpk42/pytest-tutorial1/raw/tip/pytest-basic.pdf
|
||||||
|
|
||||||
|
basic usage and funcargs:
|
||||||
|
|
||||||
|
- `pycon 2010 tutorial PDF`_ and `tutorial1 repository`_
|
||||||
|
|
||||||
function arguments:
|
function arguments:
|
||||||
|
|
||||||
- `application setup in test functions with funcargs`_
|
- `application setup in test functions with funcargs`_
|
||||||
|
|
Loading…
Reference in New Issue