[Pytest-commit] commit/pytest: dareonion: add in missing finalizer to doc example

2015-05-22 Thread commits-noreply
1 new commit in pytest: https://bitbucket.org/pytest-dev/pytest/commits/00993fa6da31/ Changeset: 00993fa6da31 User:dareonion Date:2015-05-22 02:15:52+00:00 Summary: add in missing finalizer to doc example Affected #: 1 file diff -r 6ee4b4d70a9b81f525c6fe46eab1b2018de6f4b0 -

[Pytest-commit] Issue #750: py.test can't xfail tests parametrized with classes (pytest-dev/pytest)

2015-05-22 Thread sergey chipiga
New issue 750: py.test can't xfail tests parametrized with classes https://bitbucket.org/pytest-dev/pytest/issue/750/pytest-cant-xfail-tests-parametrized-with sergey chipiga: Code example: ``` import pytest class A(object): pass @pytest.mark.parametrize('x', [pytest.mark.xfail(A)]) def test(x