[py-dev] [hpk42/pytest] way to control how pytest-xdist runs tests in parallel? (issue #175)

2012-08-05 Thread Anonymous
--- you can reply above this line --- New issue 175: way to control how pytest-xdist runs tests in parallel? https://bitbucket.org/hpk42/pytest/issue/175/way-to-control-how-pytest-xdist-runs-tests Anonymous: Apologies if this has been raised and triaged already. I could not find

[py-dev] [hpk42/pytest] Test functions with leading underscores ignored (issue #177)

2012-08-14 Thread Anonymous
--- you can reply above this line --- New issue 177: Test functions with leading underscores ignored https://bitbucket.org/hpk42/pytest/issue/177/test-functions-with-leading-underscores Anonymous: Why does _pytest/python.py contain this code in PyCollectorMixin.collect()?: if name[0

[py-dev] [hpk42/pytest] Support for unittests TestCase.runTest syntax (issue #191)

2012-09-22 Thread Anonymous
--- you can reply above this line --- New issue 191: Support for unittests TestCase.runTest syntax https://bitbucket.org/hpk42/pytest/issue/191/support-for-unittests-testcaseruntest Anonymous: I'm currently maintaining a collection of unittest.TestCases with most of them containing runTest

[py-dev] [hpk42/pytest] os module has no attribute 'fork' on Windows (issue #193)

2012-09-27 Thread Anonymous
--- you can reply above this line --- New issue 193: os module has no attribute 'fork' on Windows https://bitbucket.org/hpk42/pytest/issue/193/os-module-has-no-attribute-fork-on-windows Anonymous: executing py.test --boxed on Windows failed with the error: Traceback (most recent call last

[py-dev] [hpk42/pytest] Marks don't pick up nested classes (issue #199)

2012-10-05 Thread Anonymous
--- you can reply above this line --- New issue 199: Marks don't pick up nested classes https://bitbucket.org/hpk42/pytest/issue/199/marks-dont-pick-up-nested-classes Anonymous: example: {{{ #!python @pytest.mark.a class TestA: def test_b(self): assert True class TestC

[py-dev] [hpk42/pytest-cache] --clearcache fails if there is no .cache directory (issue #6)

2012-10-13 Thread Anonymous
--- you can reply above this line --- New issue 6: --clearcache fails if there is no .cache directory https://bitbucket.org/hpk42/pytest-cache/issue/6/clearcache-fails-if-there-is-no-cache Anonymous: When using the --clearcache option it fails when the .cache directory doesn't exist

[py-dev] [hpk42/pytest] Small documentation improvement. (issue #212)

2012-10-28 Thread Anonymous
--- you can reply above this line --- New issue 212: Small documentation improvement. https://bitbucket.org/hpk42/pytest/issue/212/small-documentation-improvement Anonymous: IMHO the documentation in Fixtures as Function arguments (funcargs) could be improved. As first time reader

[py-dev] [hpk42/pytest] Sporadic exceptions on xdist run (issue #216)

2012-10-31 Thread Anonymous
--- you can reply above this line --- New issue 216: Sporadic exceptions on xdist run https://bitbucket.org/hpk42/pytest/issue/216/sporadic-exceptions-on-xdist-run Anonymous: When running with the xdist plugin and on multiple processors, I get every 2-3 runs an exception. My system is a Debian

[py-dev] [hpk42/pytest] setup_class was not set correctly as class level (issue #220)

2012-11-07 Thread Anonymous
--- you can reply above this line --- New issue 220: setup_class was not set correctly as class level https://bitbucket.org/hpk42/pytest/issue/220/setup_class-was-not-set-correctly-as-class Anonymous: #test_d.py source: setup_class was called for each test cases, while teardown was called once