[Pytest-commit] Issue #552: Can't mark.xfail a callable test param (hpk42/pytest)

2014-07-30 Thread Tom V
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

[Pytest-commit] Issue #562: @nose.tools.istest not respected (hpk42/pytest)

2014-08-10 Thread Tom V
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

[Pytest-commit] Issue #591: Typo in "Assertions about expected exceptions" docs (hpk42/pytest)

2014-09-14 Thread Tom V
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

[Pytest-commit] Issue #615: ValueError on compound assert with percent (hpk42/pytest)

2014-10-12 Thread Tom V
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

[Pytest-commit] Issue #764: --fixtures doesn't display all fixtures from conftest.py in sub directories (pytest-dev/pytest)

2015-06-08 Thread Tom V
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