summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| | | * Add a CSV filter.Jonathan Lange2012-01-312-0/+164
| | | |
| | | * FlakesJonathan Lange2012-01-311-6/+0
| |_|/ |/| |
* | | Merge mgz's patch for flushing the TestProtocolClient stream.Jonathan Lange2010-10-192-0/+10
|\ \ \
| * | | Flush the stream at the start and end of each test in the python clientMartin2010-10-041-0/+6
| | | |
* | | | Document the fact that subunit needs testtools 0.9.6 or later.Jonathan Lange2010-10-072-2/+2
|\ \ \ \ | |/ / / |/| | |
| * | | Document the fact that subunit needs testtools 0.9.6 or later.Jonathan Lange2010-10-062-2/+2
|/ / /
* | | Merge subunit_progress() function for C child library.Jelmer Vernooij2010-09-303-0/+78
|\ \ \ | |_|/ |/| |
| * | Split up progress tests.Jelmer Vernooij2010-09-281-5/+24
| | |
| * | Add subunit_progress() function to child interface.Jelmer Vernooij2010-09-283-0/+59
|/ /
* | Move the bulk of subunit-ls into an importable Python module.Jonathan Lange2010-08-052-64/+63
|\ \ | |/ |/|
| * FlakesJonathan Lange2010-08-041-1/+0
| |
| * Whitespace.Jonathan Lange2010-08-041-13/+13
| |
| * Move TestIdPrintingResult from subunit-ls to subunit.test_resultsJonathan Lange2010-08-042-51/+51
|/
* Release 0.0.6.0.0.6Robert Collins2010-07-022-1/+9
|
* Make it clear that BRACKETED parts are utf8 and fix the outputter to do so.Robert Collins2010-07-023-12/+14
|
* Merge james_w's discovery patch, tweaked.Robert Collins2010-07-012-6/+36
|\
| * Tweak discovery patch as requested in the review.Robert Collins2010-07-011-2/+5
| |
| * Modify the usage message from subunit.run.James Westby2010-06-221-2/+28
| |
| * Add NEWS snippet.James Westby2010-06-141-0/+7
| |
| * Use testtools to do the running and so support discovery via that.James Westby2010-06-121-26/+2
| |
| * Add --discover-pattern.James Westby2010-06-071-1/+5
| |
| * Implement a hacky first pass at discovery.James Westby2010-06-071-2/+18
| |
* | Merge the setup.py Tres supplied.Robert Collins2010-06-243-0/+85
|\ \
| * | Add distutils / setuptools installation support for Python libs / scripts.Tres Seaver2010-06-022-0/+78
| |/
* | Fix make check with testtools trunk.Robert Collins2010-06-243-19/+22
| |
* | Unbreak tests in trunk. Oops.Robert Collins2010-06-212-13/+16
| |
* | * Old style tracebacks with no encoding info are now treated as UTF8 ratherRobert Collins2010-06-113-1/+10
|/ | | | than some-random-codec-like-ascii. (Robert Collins)
* On windows, ProtocolTestCase and TestProtocolClient will set their streams toRobert Collins2010-05-133-0/+22
| | | | | | binary mode by calling into msvcrt; this avoids having their input or output mangled by the default line ending translation on that platform. (Robert Collins, Martin [gz], #579296)
* (vila, martin(gz), lifeless) Make _feed_chunks assertion verbose to help debugVincent Ladeuil2010-05-121-1/+1
|
* Merge support for handling lowercase skip/todo in tap2subunit.Jelmer Vernooij2010-04-122-5/+16
|\
| * Handle lowercase skip/todo in tap.Jelmer Vernooij2010-04-112-5/+16
| |
* | Add support for progress reporting in Perl module.Jelmer Vernooij2010-04-061-0/+21
|\ \ | |/
| * Add support for progress in the perl bindings.Jelmer Vernooij2010-03-301-0/+21
|/
* Fix incorrect ordering of tags method parameters in TestResultDecorator. ThisRobert Collins2010-03-122-2/+6
| | | | | is purely cosmetic as the parameters are passed down with no interpretation. (Robert Collins, #537611)
* Apply trivial doc fix from Brad Hards for c/README.Robert Collins2010-02-202-1/+7
|
* Eliminate tabs used mixed in with spaces.Jelmer Vernooij2010-01-252-12/+12
|
* Release 0.0.5Robert Collins2010-01-203-3/+8
|
* Add --forward option to notify.Jelmer Vernooij2010-01-171-1/+8
|
* Merge SUBUNIT_FORMATTER patch.Jelmer Vernooij2010-01-163-8/+25
|\
| * Ignore SUBUNIT_FORMATTER if it is empty.Jelmer Vernooij2010-01-161-1/+1
| |
| * Support SUBUNIT_FORMATTER environment variable.Jelmer Vernooij2010-01-153-8/+25
| |
* | Only take commands that start the line they are observed on.Robert Collins2010-01-162-2/+6
| |
* | Fix the default of all for read in subunit2gtk, really fixing the hup race ↵Robert Collins2010-01-151-1/+1
| | | | | | | | condition.
* | Flush the read pipe after a process hangup is detected, before calling ↵Robert Collins2010-01-151-3/+7
|/ | | | lostConnection.
* Update NEWS about subunit-notify.Jelmer Vernooij2010-01-151-0/+6
|
* merge notification filter.Jelmer Vernooij2010-01-151-0/+58
|\
| * Add subunit script that notifies the test results.Jelmer Vernooij2010-01-151-0/+58
| |
* | Shut GTK up about None being returned instead of True or False.Robert Collins2010-01-151-0/+1
| |
* | Merge the change to not have a progress name collision in subunit2gtk from Vila.Robert Collins2010-01-151-10/+12
|\ \ | |/ |/|
| * Make subunit2gtk works and stop reporting the last test as an error.Vincent Ladeuil2010-01-141-18/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * subunit2gtk: (GTKTestResult.__init__, GTKTestResult.stopTest, GTKTestResult.progress): An attribute named like a method sounds like a recipe for disaster. 'progress' attribute renamed to 'progress_model'. (GIOProtocolTestCase.read): Don't install additional watches, just return True to indicate we want to be called again. Return False only when we get to the end of the file. Leave hup handle the lost connection issues. (GIOProtocolTestCase.hup): We can be called only once but we need to return False to avoid spurious warnings.