Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Fixup NEWS and versions for recent work | Robert Collins | 2018-01-25 | 4 | -4/+9 | |
| | | ||||||
* | | Merge pull request #26 from mtreinish/v1.2.0-prep | Robert Collins | 2017-10-17 | 1 | -2/+12 | |
|\ \ | | | | | | | Update release notes for 1.2.0 release | |||||
| * | | Update release notes for 1.2.0 release | Matthew Treinish | 2017-10-16 | 1 | -2/+12 | |
|/ / | | | | | | | | | | | | | | | Most of the ground work for the 1.2.0 release was already prepared in commit 2a4d9f61312bf388e3f909bb58c5237d556f8770. But, the release was never pushed. This commit updates the release notes for the changes between that and current HEAD in preparation for actually pushing the release. | |||||
* | | Merge pull request #25 from mtreinish/add-value-error-to-write-only-stream-check | Robert Collins | 2017-10-03 | 2 | -1/+44 | |
|\ \ | | | | | | | Check for ValueError in write only check in _unwrap_text() | |||||
| * | | Check for ValueError in write only check in _unwrap_text() | Matthew Treinish | 2017-09-25 | 2 | -1/+44 | |
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the _unwrap_text() function it checks by trying to read or write to the stream to see if it's wrapped or not and return the buffer. The check there first tries to read and if an exception of the proper type is raised it will assume it was opened in write mode and proceed to check for a buffer by writing to the stram. However this check is missing an exception to check for. If a FileIO object is passed in on Python 2.7 (which can be the case sometimes for sys.stdout, although I haven't figured out under which circumstances) then a ValueError will be raised. [1] To enable using _unwrap_text() when a FileIO object is used this commit adds a ValueError to the list of exception types to handle this case. [1] https://github.com/python/cpython/blob/2.7/Modules/_io/fileio.c#L431 | |||||
* | | Fallback to reading one-byte-at-a-time on Windows (#22) | Claudiu Belu | 2017-03-02 | 1 | -0/+5 | |
| | | | | | | | | select.select does not work on file descriptors on Windows, causing subunit to fail. | |||||
* | | Remove test envs that no longer work from travis.yml (#23) | Matthew Treinish | 2017-03-01 | 1 | -2/+1 | |
| | | | | | | | | | | | | | | This commit removes the python 3.2 and pypy 3.2 test envs from the travis ci config. These no longer have support for pypi and pip so there is no reason we should be trying to run them anymore. The pypy3 version has been bumped to 3.3. | |||||
* | | Merge pull request #20 from jeffrey4l/fix_typo | Jonathan Lange | 2016-07-10 | 1 | -2/+2 | |
|\ \ | |/ |/| | Fix typo in subunit-filter | |||||
| * | Fix typo in subunit-filter | Jeffrey Zhang | 2016-07-06 | 1 | -2/+2 | |
|/ | ||||||
* | Actually ship subunit2disk. | Robert Collins | 2015-11-05 | 1 | -0/+1 | |
| | ||||||
* | Release 1.2.1.2.0 | Robert Collins | 2015-10-23 | 3 | -2/+5 | |
| | ||||||
* | Typo fixes from Leo Arias | Robert Collins | 2015-10-23 | 2 | -2/+2 | |
| | ||||||
* | Fix StreamResultToBytes._write_packet() | Victor Stinner | 2015-10-20 | 1 | -3/+17 | |
| | | | | | | | | Call write() in a loop until all bytes are written. The write() method doesn't ensure that all bytes are written. This change should workaround the eventlet bug: https://github.com/eventlet/eventlet/issues/248 | |||||
* | Skip hypothesis tests on 3.2 | Robert Collins | 2015-10-20 | 2 | -11/+17 | |
| | | | | (It's not 3.2 compatible at the moment). | |||||
* | Fix broken v1 example in README.rst | Robert Collins | 2015-09-21 | 1 | -1/+1 | |
| | ||||||
* | Handle very short packets | Robert Collins | 2015-08-04 | 5 | -3/+27 | |
| | | | | Yay quickcheck. | |||||
* | Add subunit2disk which exports a stream to the fs. | Robert Collins | 2015-07-13 | 8 | -2/+220 | |
| | ||||||
* | Handle pypy, Python 3.4 and 3.5 in tests. | Robert Collins | 2015-07-13 | 2 | -9/+10 | |
| | ||||||
* | Add .travis.yml | Robert Collins | 2015-07-13 | 4 | -42/+87 | |
| | ||||||
* | Rename README to README.rst for github rendering | Robert Collins | 2015-07-13 | 3 | -2/+2 | |
| | ||||||
* | Support --locals in tracebacks and release 1.1.01.1.0 | Robert Collins | 2015-03-10 | 5 | -9/+16 | |
| | ||||||
* | Forward stdout content in subunit-2to1. | Robert Collins | 2014-12-11 | 2 | -2/+11 | |
| | | | | | | It was always intended to be forwarded. Closes-Bug: #1400519 | |||||
* | Remove support for SUBUNIT_FORMATTER, which has been broken for a long time. | Jelmer Vernooij | 2014-12-11 | 3 | -19/+7 | |
| | ||||||
* | Remove unused import. | Jelmer Vernooij | 2014-12-02 | 1 | -1/+0 | |
| | ||||||
* | Release 1.0.0.1.0.0 | Robert Collins | 2014-11-19 | 6 | -5/+11 | |
| | ||||||
* | Improve showing of import errors in the Python runner. | Robert Collins | 2014-11-18 | 3 | -1/+23 | |
| | | | | This depends on testtools 1.4.0 to get the improved behaviour. | |||||
* | Fix tests with testtools 1.2.0 and above. | Robert Collins | 2014-11-18 | 2 | -2/+13 | |
| | | | | | 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. | |||||
* | Make subunit-output executable. | Jelmer Vernooij | 2014-11-02 | 1 | -0/+0 | |
| | ||||||
* | Update python tarball rules for git. | Robert Collins | 2014-09-01 | 1 | -1/+1 | |
| | ||||||
* | Translate bzr ignores into git ignores. | Robert Collins | 2014-09-01 | 1 | -9/+13 | |
| | ||||||
* | 0.0.210.0.21 | Robert Collins | 2014-08-27 | 4 | -3/+12 | |
| | | | | | | | | | | ------ BUGFIXES ~~~~~~~~ * Brown bag bugfix - 0.0.20's setup.py referenced cvs not csv. (Robert Collins, #1361924) | |||||
* | Release 0.0.200.0.20 | Robert Collins | 2014-08-27 | 4 | -3/+11 | |
| | | | | | | | Also * The python-subunit tarball can now have setup run from the current directory. (Robert Collins, #1361857) | |||||
* | * subunit2csv is now installed when using pip. | Robert Collins | 2014-08-24 | 2 | -0/+4 | |
| | | | | (Robert Collins, #1279669) | |||||
* | * testscenarios is now a test dependency, not an install dependency. | Robert Collins | 2014-08-24 | 2 | -2/+10 | |
| | | | | (Arfrever Frehtes Taifersar Arahesis, #1292757) | |||||
* | Fixes for release process.0.0.19 | Robert Collins | 2014-08-24 | 2 | -3/+5 | |
| | ||||||
* | 0.0.19 | Robert Collins | 2014-08-24 | 5 | -31/+80 | |
| | | | | | | | | | | | | ------ 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) | |||||
* | Ignore more things. | Robert Collins | 2014-08-24 | 1 | -1/+5 | |
| | ||||||
* | Release 0.0.18.0.0.18 | Robert Collins | 2014-01-30 | 2 | -2/+2 | |
| | ||||||
* | Fix support for testtools 0.6.35. | Robert Collins | 2014-01-30 | 2 | -1/+10 | |
| | ||||||
* | Update Hacking notes.0.0.17 | Robert Collins | 2014-01-29 | 1 | -0/+1 | |
| | ||||||
* | Release 0.0.17 | Robert Collins | 2014-01-29 | 3 | -2/+5 | |
| | ||||||
* | * Add ``subunit-output`` tool that can generate a Subunit v2 bytestream from | Robert Collins | 2014-01-13 | 8 | -6/+848 | |
|\ | | | | | | | arguments passed on the command line. (Thomi Richards, #1252084) | |||||
| * | Import matcher used. | Thomi Richards | 2014-01-13 | 1 | -0/+1 | |
| | | ||||||
| * | Fix failing test on py33. | Thomi Richards | 2014-01-13 | 1 | -6/+4 | |
| | | ||||||
| * | Fix failing test in python 3.2. | Thomi Richards | 2013-12-16 | 1 | -1/+1 | |
| | | ||||||
| * | Make tests work in py2 and py3. | Thomi Richards | 2013-12-10 | 1 | -1/+5 | |
| | | ||||||
| * | Don't make tests convert to and from bytes. Instead, just use a StreamResult ↵ | Thomi Richards | 2013-12-10 | 2 | -17/+49 | |
| | | | | | | | | double. Update test code. | |||||
| * | Generate scenarios inside subunit.tests.test_suite, not by subclassing ↵ | Thomi Richards | 2013-12-09 | 2 | -4/+7 | |
| | | | | | | | | WithScenarios. | |||||
| * | Add testscenario dependency to the INSTALL file. | Thomi Richards | 2013-12-09 | 1 | -1/+4 | |
| | | ||||||
| * | Don't need to patch stderr anymore in the tests. | Thomi Richards | 2013-12-09 | 1 | -23/+10 | |
| | |