New issue 552: Can't mark.xfail a callable test param
https://bitbucket.org/hpk42/pytest/issue/552/cant-markxfail-a-callable-test-param
Tom V:
Within a `pytest.mark.parametrize` decorator, marking xfail on a (non-lambda)
callable like `pytest.mark.xfail(func)` doesn't work.
The
New issue 562: @nose.tools.istest not respected
https://bitbucket.org/hpk42/pytest/issue/562/nosetoolsistest-not-respected
Tom V:
Given the [Supported nose
Idioms](http://pytest.org/latest/nose.html#supported-nose-idioms) page says
pytest supports: *`__test__` attribute on modules/classes
New issue 591: Typo in "Assertions about expected exceptions" docs
https://bitbucket.org/hpk42/pytest/issue/591/typo-in-assertions-about-expected
Tom V:
The [code block explaining accessing "actual exception
info"](http://pytest.org/latest/assert.html#assertions-about
New issue 615: ValueError on compound assert with percent
https://bitbucket.org/hpk42/pytest/issue/615/valueerror-on-compound-assert-with-percent
Tom V:
Assertions like `assert 1 % 1 or False` or ``assert True and 1 % 1`` fail with:
`ValueError: unsupported format character ')' (0x29
New issue 764: --fixtures doesn't display all fixtures from conftest.py in sub
directories
https://bitbucket.org/pytest-dev/pytest/issue/764/fixtures-doesnt-display-all-fixtures-from
Tom V:
Sample project to reproduce:
https://github.com/tomviner/bug-report-pytest-fixtures-list
Given I h