summaryrefslogtreecommitdiff
path: root/python
Commit message (Collapse)AuthorAgeFilesLines
...
* | PEP8 fixes.Thomi Richards2013-11-201-21/+18
| |
* | code cleanup, added a few more tests for the --file-name option.Thomi Richards2013-11-202-4/+25
| |
* | Fix docstring, code shuffle.Thomi Richards2013-11-201-21/+19
| |
* | Remove quotes around 'subunit contributors' in copyright headers.Thomi Richards2013-11-202-2/+2
| |
* | Switch to using command line options to specify status. Expand help output, ↵Thomi Richards2013-11-202-221/+179
| | | | | | | | and refactor several test cases.
* | Lots of code cleanup, about to refactor argument parsing.Thomi Richards2013-11-202-153/+180
| |
* | Remove shebang from subunit._output module.Thomi Richards2013-11-191-1/+0
| |
* | Python 3 compatibility fixes.Thomi Richards2013-11-192-18/+18
| |
* | Fix things pyflakes complains about.Thomi Richards2013-11-192-8/+7
| |
* | PEP8 fixes.Thomi Richards2013-11-192-26/+51
| |
* | Made help/usage documentation much more useful.Thomi Richards2013-11-191-2/+10
| |
* | Add support for expected fail and unexpected success test statuses.Thomi Richards2013-11-192-1/+57
| |
* | Add support for tags.Thomi Richards2013-11-192-1/+30
| |
* | Aded NEWS item, fixed some test code.Thomi Richards2013-11-191-3/+2
| |
* | Add support for passing mime-type on the command-line.Thomi Richards2013-11-192-5/+36
| |
* | Extend test to make sure that by default no mime-type is specified.Thomi Richards2013-11-192-7/+10
| |
* | Add support for attaching files.Thomi Richards2013-11-192-5/+70
| |
* | Allow customisation of argument parser class used, so we can write failing ↵Thomi Richards2013-11-192-24/+39
| | | | | | | | tests for command line arguments not yet supported. Have failing test for attaching files.
* | Add tests for timestamps, and add support for 'exists'.Thomi Richards2013-11-192-12/+80
| |
* | Clean up tests: Don't use MatchesListwise for a single-length list.Thomi Richards2013-11-191-17/+8
| |
* | Generate a timestamp for all messages, and refactor argument parser to use ↵Thomi Richards2013-11-192-15/+74
| | | | | | | | common arguments.
* | A better approach to testing the generate_bytestream function.Thomi Richards2013-11-181-14/+55
| |
* | First pass, missing some tests.Thomi Richards2013-11-182-3/+141
| |
* | Added empty test module to test suite.Thomi Richards2013-11-182-1/+25
| |
* | Added new script file, modified setup.py to install it, and added an empty ↵Thomi Richards2013-11-181-0/+18
|/ | | | implementation function.
* * Most filters will now accept a file path argument instead of only readingRobert Collins2013-08-253-1/+54
| | | | from stdin. (Robert Collins, #409206)
* * Python 3.1 and 3.2 have an inconsistent memoryview implementation whichRobert Collins2013-08-251-1/+19
| | | | required a workaround for NUL byte detection. (Robert Collins, #1216246)
* * V2 parser errors now set appropriate mime types for the encapsulated packetRobert Collins2013-08-252-14/+28
| | | | data and the error message. (Robert Collins)
* Release 0.0.150.0.15Robert Collins2013-08-251-1/+1
|
* * Memoryview and struct were mutually incompatible in 2.7.3 and 3.2.Robert Collins2013-08-251-10/+15
| | | | (Robert Collins, #1216163)
* * Clients of subunit did not expect memoryview objects in StreamResult events.Robert Collins2013-08-252-0/+8
| | | | (Robert Collins)
* Release 0.0.140.0.14Robert Collins2013-08-241-1/+1
|
* * Memoryview detection was broken and thus it's use was never really tested.Robert Collins2013-08-241-3/+10
| | | | (Robert Collins, 1216101)
* * TestTestProtocols' test_*_details were dictionary sort order dependent.Robert Collins2013-08-242-19/+63
| | | | | | | (Robert Collins, #1025392) * TestSubUnitTags's test_add_tag was also se sort order dependent. (Robert Collins, #1025392)
* * TestTestProtocols' test_tags_both was set sort order dependent.Robert Collins2013-08-241-2/+6
| | | | (Robert Collins, #1025392)
* * TestProtocol2's tag tests were set sort order dependent.Robert Collins2013-08-241-4/+7
| | | | (Robert Collins, #1025392)
* Release 0.0.13.0.0.13Robert Collins2013-06-171-1/+1
|
* * `subunit-stats` no longer outputs encapsulated stdout as subunit.Robert Collins2013-06-171-4/+9
| | | | (Robert Collins, #1171987)
* * The logic for `subunit.run` is now importable via python -Robert Collins2013-06-171-1/+5
| | | | `subunit.run.main`. (Robert Collins, #606770)
* BUG FIXESRobert Collins2013-06-1613-159/+14
| | | | | | | | ~~~~~~~~~ * Removed GPL files that were (C) non Subunit Developers - they are incompatible for binary distribution, which affects redistributors. (Robert Collins, #1185591)
* Release 0.120.0.12Robert Collins2013-05-251-1/+1
|
* BUG FIXESRobert Collins2013-05-132-0/+9
| | | | | | | | | ~~~~~~~~~ * Subunit v2 packets with both file content and route code were not being parsed correctly - they would incorrectly emit a parser error, due to trying to parse the route code length from the first byes of the file content. (Robert Collins, 1172815)
* Release 0.0.11, depending on the new testtools StreamResult API.0.0.11Robert Collins2013-04-082-3/+3
|
* Switch to variable length encoded integers.Robert Collins2013-03-313-162/+373
|
* * ``subunit.run`` now replaces sys.stdout to ensure that stdout is unbufferedRobert Collins2013-03-131-0/+7
| | | | | - without this pdb output is not reliably visible when stdout is a pipe as it usually is. (Robert Collins)
* Fixes from getting testrepository running with v2.Robert Collins2013-03-063-12/+63
|
* Enumerate tests before running (permits progress bars).Robert Collins2013-03-042-1/+20
|
* Fix up buffering to make pdb usable.Robert Collins2013-03-043-3/+24
|
* Convert subunit.run to v2.Robert Collins2013-03-032-16/+15
|
* Port existing filters to v2.Robert Collins2013-03-034-305/+287
|