JP
JP
... at least, not until the generator starts generating tests. This means you can't use setupClass to populate a list that several generator tests use.
AttributeErrors during test generation are swallowed silently unless the test module is explicitly loaded. In that case, they are hard to debug because they appear only as test failures with...
To support tests with layers and those loaded via load_tests, the mp plugin needs to be able to handle more complex instructions than 'load this test from this one name'.
TestID plugin in nose2 should have the ability to loop on failed tests like the one in nose
When active, all python modules should be examined for tests, not just those that look 'test-like'.
support doctest file fixtures, try to use the same format as sphinx
The result plugin should fire before/afterInteraction around every time it calls stream.write -- otherwise other plugins that are capturing stderr may capture the test result output.
Plugin interaction problem? beforeInteraction not firing? or is the buffer plugin not doing the right thing to release stdout?
What steps will reproduce the problem? 1. use this simple 2-case file $ cat > tests.py def test1() assert True def test2(): assert True 1. Run: $ nosetests tests.py -verbose=2...
What steps will reproduce the problem? 1. Run xunit unit test w/ --processes=2 2. See fails What is the expected output? What do you see instead? All of nose's tests...