Add issues section to proposal doc

This commit is contained in:
Raphael Pierzina 2016-06-25 10:10:57 +02:00
parent dc55551213
commit 84f0dcecf8
1 changed files with 18 additions and 0 deletions

View File

@ -56,3 +56,21 @@ This is how a functional test could look like:
assert result.exception is None
assert result.project.isdir()
Issues
------
* By using ``request.getfuncargvalue()`` we rely on actual fixture function
execution to know what fixtures are involved, due to it's dynamic nature
* More importantly, ``request.getfuncargvalue()`` cannot be combined with
parametrized fixtures, such as ``extra_context``
* This is very inconvenient if you wish to extend an existing test suite by
certain parameters for fixtures that are already used by tests
pytest version 3.0 and higher reports an error if you try to run above code::
Failed: The requested fixture has no parameter defined for the current
test.
Requested fixture 'extra_context'