summaryrefslogtreecommitdiff
path: root/python/subunit/tests
Commit message (Collapse)AuthorAgeFilesLines
* Skip hypothesis tests on 3.2Robert Collins2015-10-201-10/+15
| | | | (It's not 3.2 compatible at the moment).
* Handle very short packetsRobert Collins2015-08-041-0/+14
| | | | Yay quickcheck.
* Add subunit2disk which exports a stream to the fs.Robert Collins2015-07-132-0/+51
|
* Handle pypy, Python 3.4 and 3.5 in tests.Robert Collins2015-07-132-9/+10
|
* Support --locals in tracebacks and release 1.1.01.1.0Robert Collins2015-03-101-6/+4
|
* Improve showing of import errors in the Python runner.Robert Collins2014-11-181-0/+12
| | | | This depends on testtools 1.4.0 to get the improved behaviour.
* Fix tests with testtools 1.2.0 and above.Robert Collins2014-11-181-2/+7
| | | | | Import errors don't break execution or listing now in testtools, so to test execution breaking we have to be a little bit more direct.
* 0.0.19Robert Collins2014-08-241-11/+35
| | | | | | | | | | | | ------ IMPROVEMENTS ~~~~~~~~~~~~ * ``subunit.run`` in Python will now exit 0 as long as the test stream has been generated correctly - this has always been the intent but API friction with testtools had prevented it working. (Robert Collins)
* Import matcher used.Thomi Richards2014-01-131-0/+1
|
* Fix failing test on py33.Thomi Richards2014-01-131-6/+4
|
* Fix failing test in python 3.2.Thomi Richards2013-12-161-1/+1
|
* Make tests work in py2 and py3.Thomi Richards2013-12-101-1/+5
|
* Don't make tests convert to and from bytes. Instead, just use a StreamResult ↵Thomi Richards2013-12-101-16/+48
| | | | double. Update test code.
* Generate scenarios inside subunit.tests.test_suite, not by subclassing ↵Thomi Richards2013-12-092-4/+7
| | | | WithScenarios.
* Don't need to patch stderr anymore in the tests.Thomi Richards2013-12-091-23/+10
|
* Allow the use of the --tag argument without specifying a test id.Thomi Richards2013-12-091-14/+17
|
* Use the 'append' action, instead of specifying tags as a comma-separated ↵Thomi Richards2013-12-091-8/+10
| | | | list of values.
* Patch sys.stdin correctly for testing.Thomi Richards2013-12-021-4/+4
|
* Fix failing tests.Thomi Richards2013-12-021-2/+2
|
* Fix failing tests.Thomi Richards2013-12-021-1/+1
|
* Merged trunk, fixed conflict.Thomi Richards2013-12-021-2/+12
|\
| * Exit non-zero when listing includes import failures.Robert Collins2013-11-301-2/+12
| |
| * Another case of trailing whitespace.Thomi Richards2013-11-251-1/+1
| |
* | Add tests around reading binary files, empty files, and stdin.Thomi Richards2013-11-251-0/+33
| |
* | Added test for poorly specified tags.Thomi Richards2013-11-251-0/+7
| |
* | Add a few missing tests.Thomi Richards2013-11-251-2/+32
| |
* | Lots of fixes from code review.Thomi Richards2013-11-251-117/+226
| |
* | Add a few more tests for error cases in option parser.Thomi Richards2013-11-251-10/+29
| |
* | Merge trunk.Thomi Richards2013-11-252-11/+30
|\ \ | |/
| * The test suite was failing 6 tests due to testtools changing it's outputRobert Collins2013-11-242-11/+30
| | | | | | | | formatting of exceptions. (Robert Collins)
* | Python version compatibility fixes.Thomi Richards2013-11-251-2/+6
| |
* | Port code to use optparse, rather than argparse.Thomi Richards2013-11-251-7/+5
| |
* | PEP8 fixes.Thomi Richards2013-11-201-21/+18
| |
* | code cleanup, added a few more tests for the --file-name option.Thomi Richards2013-11-201-0/+20
| |
* | Remove quotes around 'subunit contributors' in copyright headers.Thomi Richards2013-11-201-1/+1
| |
* | Switch to using command line options to specify status. Expand help output, ↵Thomi Richards2013-11-201-145/+116
| | | | | | | | and refactor several test cases.
* | Lots of code cleanup, about to refactor argument parsing.Thomi Richards2013-11-201-62/+81
| |
* | Python 3 compatibility fixes.Thomi Richards2013-11-191-13/+13
| |
* | Fix things pyflakes complains about.Thomi Richards2013-11-191-1/+0
| |
* | PEP8 fixes.Thomi Richards2013-11-191-11/+33
| |
* | Add support for expected fail and unexpected success test statuses.Thomi Richards2013-11-191-1/+41
| |
* | Add support for tags.Thomi Richards2013-11-191-0/+21
| |
* | 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-191-4/+23
| |
* | Extend test to make sure that by default no mime-type is specified.Thomi Richards2013-11-191-6/+6
| |
* | Add support for attaching files.Thomi Richards2013-11-191-5/+45
| |
* | Allow customisation of argument parser class used, so we can write failing ↵Thomi Richards2013-11-191-19/+29
| | | | | | | | 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-191-4/+51
| |
* | 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-191-6/+37
| | | | | | | | common arguments.