adapt changelog entry about autouse fixtures and yield

This commit is contained in:
holger krekel 2012-11-19 22:20:37 +01:00
parent f263f54889
commit 7f403950ad
1 changed files with 3 additions and 4 deletions

View File

@ -2,10 +2,9 @@ Changes between 2.3.3 and 2.3.4.dev
-----------------------------------
- yielded tests will activate autouse-fixtures
- NOTE: the pre-2.0 way of yielding tests is not compatible
with autouse fixtures. If you need generative tests, use
@pytest.mark.parametrize or pytest_generate_tests, see the
many examples at http://pytest.org/latest/example/parametrize.html
- NOTE: yielded tests cannot use fixtures - if you need this
you may want to use the post-2.0 parametrize features, see
http://pytest.org/latest/example/parametrize.html
- fix autouse-issue where autouse-fixtures would not be discovered
if defined in a a/conftest.py file and tests in a/tests/test_some.py
- fix issue226 - LIFO ordering for fixture teardowns