| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #42 from jelmer/v2-only | Jelmer Vernooij | 2018-11-28 | 4 | -158/+92 |
| |\ | | | | | Remove compatibility code for pre-0.0.11 versions of subunit. | ||||
| | * | Drop support for pre-0.0.11 versions of subunit.v2-only | Jelmer Vernooij | 2018-08-26 | 4 | -158/+92 |
| | | | |||||
| * | | Add --force-init support to 'testr run'. | Jelmer Vernooij | 2018-06-15 | 1 | -1/+25 |
| |/ | |||||
| * | Switch order of arguments for tuple comparison. | Jelmer Vernooij | 2018-04-13 | 1 | -2/+2 |
| | | |||||
| * | Fix the testrepository tests with newer versions of testtools. | Jelmer Vernooij | 2018-04-05 | 2 | -4/+5 |
| | | |||||
| * | Use the newfangled test discovery feature. | Robert Collins | 2015-07-16 | 6 | -88/+8 |
| | | | | | I've checked that this generates the same number of tests. | ||||
| * | Closes #1409936: Wrong exception on read errors. | Robert Collins | 2015-07-13 | 1 | -0/+8 |
| | | | | | Patch from Matthew Treinish, adapted by me. | ||||
| * | Fix 3.3+ tests with nested classnames. | Robert Collins | 2015-07-12 | 1 | -1/+1 |
| | | |||||
| * | Migrate to pbr for build management | Monty Taylor | 2015-07-12 | 1 | -3/+3 |
| | | | | | Reduce manual maintenance by using pbr. | ||||
| * | Fixup tests with latest testtools. | Robert Collins | 2015-03-10 | 1 | -4/+10 |
| | | | | | | | Testtools has started chunking exceptions (which is perhaps good, perhaps bad) - but we shouldn't depend on the exact behaviour in it for our tests. | ||||
| * | Fix 0 timestamps for enumerated but not run tests. | Robert Collins | 2014-08-25 | 1 | -5/+27 |
| | | | | | | | | | | Tests that are enumerated but not executed will no longer reset the test timing data. Enumeration was incorrectly recording a 0 timestamp for enumerated tests. This leads to poor scheduling after an interrupted test run. Closes-Bug: #1322763 | ||||
| * | Move to subunit v2 for output of stored streams. | Robert Collins | 2014-08-24 | 3 | -18/+139 |
| | | | | | | | Passing --subunit to all testr commands will now consistently output subunit v2. Previously it would output v1 for stored streams and v2 for live streams. | ||||
| * | Make sure output_stream can handle non-utf8 bytes | Robert Collins | 2014-08-24 | 3 | -14/+31 |
| | | | | | This is needed to safely output raw subunit v2 streams. | ||||
| * | Fix python3 filtering support. | Clark Boylan | 2014-05-19 | 1 | -0/+11 |
| | | | | | | * Test filtering was failing under python3 and would only apply the filters to the first test listed by discover. (Clark Boylan, #1317607) | ||||
| * | * ``run`` was outputting bad MIME types - test/plain, not text/plain. | Robert Collins | 2014-02-11 | 1 | -1/+1 |
| | | | | | (Robert Collins) | ||||
| * | * ``run`` now accepts ``--isolated`` as a parameter, which will cause each | Robert Collins | 2013-11-04 | 1 | -0/+29 |
| | | | | | | | selected test to be run independently. This can be useful to both workaround isolation bugs and detect tests that can not be run independently. (Robert Collins) | ||||
| * | * ``capture_ids`` in test_run now returns a list of captures, permitting tests | Robert Collins | 2013-11-04 | 1 | -14/+15 |
| | | | | | that need to test multiple runs to do so. (Robert Collins) | ||||
| * | * When test listing fails, testr will now report an error rather than | Robert Collins | 2013-07-17 | 1 | -0/+9 |
| | | | | | | incorrectly trying to run zero tests. A test listing failure is detected by the returncode of the test listing process. (Robert Collins, #1185231) | ||||
| * | * A new testr.conf option ``group_regex`` can be used for grouping | Robert Collins | 2013-07-16 | 1 | -0/+10 |
| |\ | | | | | | | tests so that they get run in the same backend runner. (Matthew Treinish) | ||||
| | * | Add group_regex option to .testr.conf to leverage use of group_regex | Matthew Treinish | 2013-07-09 | 1 | -0/+9 |
| | | | | | | | | | for scheduling. | ||||
| * | | * The scheduler can now groups tests together permitting co-dependent tests to | Robert Collins | 2013-07-16 | 1 | -0/+40 |
| |\ \ | |/ | | | | | | | | | always be scheduled onto the same backend. Note that this does not force co-dependent tests to be executed, so partial test runs (e.g. --failing) may still fail. (Matthew Treinish, Robert Collins) | ||||
| | * | Add group regex scheduling hint to the test partitioner | Matthew Treinish | 2013-07-08 | 1 | -0/+31 |
| | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds a new optional parameter, group_regex, to TestListingFixture. The parameter group_regex is used to group the test_ids. By passing a regex string with the parameter the test partitioner will match the regex to the test ids and then group by the result. In the case a test id does not match the regex it will be put in a default group. These groups are then used for scheduling the partitions. Each test groups is scheduled together so that all tests in a group are run together on the same partition. For the purposes of scheduling the groups the sum of all test ids in a group is used to schedule the whole group in a partition. | ||||
| * | | Make an assertion format check more lenient, for Python 3.3. | Robert Collins | 2013-07-13 | 1 | -1/+1 |
| | | | |||||
| * | | Fix an erroneous unicode to bytes comparison. | Robert Collins | 2013-07-13 | 1 | -1/+2 |
| | | | |||||
| * | | Remove unneeded test setup. | Robert Collins | 2013-05-19 | 1 | -1/+0 |
| | | | |||||
| * | | Teach load how to cause a failure in response to stdin. | Robert Collins | 2013-04-20 | 1 | -0/+13 |
| |/ | |||||
| * | Only return streams from CLI._iter_stream if the type matches the first type ↵ | Robert Collins | 2013-04-14 | 1 | -0/+15 |
| | | | | | the command declared. | ||||
| * | Consolidate on the StreamResult API for make_results' return values. | Robert Collins | 2013-04-11 | 4 | -24/+13 |
| | | |||||
| * | Cleanup crufty imports. | Robert Collins | 2013-04-10 | 1 | -11/+2 |
| | | |||||
| * | Drop unused class TestResultFilter. | Robert Collins | 2013-04-10 | 1 | -55/+0 |
| | | |||||
| * | Drop the ExtendedToStream wrapping around UI.make_result. | Robert Collins | 2013-04-10 | 1 | -1/+1 |
| | | |||||
| * | Move tag based test filtering into the UI: many test things won't be ↵ | Robert Collins | 2013-04-10 | 6 | -92/+38 |
| | | | | | filtered, such as slow tests and pdb debugging, so the UI has to see the tests. Moving the responsibility into the UI may lead to repetition in other UI's if not made easy to reuse, but that seems like the lesser of evils for now. | ||||
| * | Add test for --subunit support - the UI was previously only loosely tested. | Robert Collins | 2013-04-08 | 1 | -2/+14 |
| | | |||||
| * | Change get_test() APIs to return StreamResult rather than TestResult ↵ | Robert Collins | 2013-04-01 | 3 | -22/+27 |
| | | | | | emitting test objects. | ||||
| * | Migrate to new streamresult concurrent test suite API. | Robert Collins | 2013-03-22 | 1 | -14/+0 |
| | | |||||
| * | Split out event forwarding and summarising roles for make_result. | Robert Collins | 2013-03-16 | 2 | -8/+10 |
| | | |||||
| * | Move internal get_inserter to be StreamResult based. | Robert Collins | 2013-03-16 | 8 | -144/+112 |
| | | |||||
| * | Cleanup the switch to using inserter state. | Robert Collins | 2013-03-15 | 1 | -0/+1 |
| | | |||||
| * | Fix test_cli for python 2.x | Robert Collins | 2013-03-15 | 1 | -1/+1 |
| | | |||||
| * | Start getting streamresult into the innards. | Robert Collins | 2013-03-15 | 3 | -60/+38 |
| | | |||||
| * | * Expects subunit v2 if the local library has v2 support in the subunit | Robert Collins | 2013-03-10 | 5 | -31/+181 |
| | | | | | | | | library. This should be seamless if the system under test shares the Python libraries. If it doesn't, either arrange to use ``subunit-2to1`` or upgrade the subunit libraries for the system under test. (Robert Collins) | ||||
| * | 0.0.14 | Robert Collins | 2013-02-08 | 16 | -140/+156 |
| | | | | | | | | | | | ++++++ IMPROVEMENTS ------------ * First cut at full Python 3 support. The 'works for me' release. (Robert Collins) | ||||
| * | Refactor, making the test run case also spin up in advance. | Robert Collins | 2012-12-20 | 1 | -0/+2 |
| | | |||||
| * | Support creating test execution environments at runtime. | Robert Collins | 2012-12-20 | 1 | -1/+44 |
| | | |||||
| * | Implement test listing and execution with test execution instances. | Robert Collins | 2012-12-19 | 1 | -1/+90 |
| | | |||||
| * | Revert out a test tweak, and add test for behaviour without per-instance ↵ | Robert Collins | 2012-12-19 | 1 | -2/+15 |
| | | | | | execution logic. | ||||
| * | Actually implement instance disposal. | Robert Collins | 2012-12-19 | 1 | -1/+38 |
| | | |||||
| * | Enforce setUp before get_run_command. | Robert Collins | 2012-12-19 | 1 | -1/+1 |
| | | |||||
| * | * TestCommand is now a fixture. This is used to ensure cached test instances | Robert Collins | 2012-12-19 | 1 | -0/+5 |
| | | | | | | are disposed of - if using the object to run or list tests, you will need to adjust your calls. (Robert Collins) | ||||
| * | * It's now possible to configure ``test_run_concurrency`` in ``.testr.conf`` | Robert Collins | 2012-12-19 | 1 | -4/+38 |
| | | | | | to have concurrency defined by a callout. (Robert Collins) | ||||
