summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Reformat README so query commands don't end up on the same line.HEADmasterJelmer Vernooij2018-12-041-7/+12
|
* Merge pull request #42 from jelmer/v2-onlyJelmer Vernooij2018-11-2812-228/+118
|\ | | | | Remove compatibility code for pre-0.0.11 versions of subunit.
| * Update NEWS; mention python versions in INSTALL.txt.Jelmer Vernooij2018-11-282-1/+6
| |
| * Drop support for pre-0.0.11 versions of subunit.v2-onlyJelmer Vernooij2018-08-2610-227/+112
| |
* | Merge pull request #39 from jelmer/run-force-initJelmer Vernooij2018-09-162-2/+37
|\ \ | |/ |/| Add --force-init support to 'testr run'.
| * Add --force-init support to 'testr run'.Jelmer Vernooij2018-06-152-2/+37
| |
* | Drop Samba buildfarm repository.Jelmer Vernooij2018-08-071-87/+0
| |
* | Add project URLs.Jelmer Vernooij2018-08-071-0/+4
| |
* | Merge pull request #38 from jelmer/fix-travisJelmer Vernooij2018-04-132-3/+3
|\ \ | |/ | | Fix tests with pypy2 on travis.
| * Switch order of arguments for tuple comparison.Jelmer Vernooij2018-04-131-2/+2
| |
| * use pypy rather than pypy2.7.Jelmer Vernooij2018-04-131-1/+1
|/
* Merge pull request #36 from ssbarnea/fix/travisJelmer Vernooij2018-04-051-4/+3
|\ | | | | travis: update python versions
| * travis: update python versionsSorin Sbarnea2018-04-041-4/+3
| |
* | Fix the testrepository tests with newer versions of testtools.Jelmer Vernooij2018-04-052-4/+5
|/
* Enable automated testing with Python 3.5Felix Yan2018-03-301-0/+1
|
* Merge pull request #34 from ssbarnea/patch-1Jelmer Vernooij2018-03-301-1/+1
|\ | | | | Updates link to CI in README.rst
| * Updates link to CI in README.rstSorin Sbarnea2018-03-291-1/+1
|/ | | Linked to #32
* Bump pypy3Free Ekanayaka2017-03-271-2/+2
| | | Our dependencies now require > 3.3.
* Fix CI badge in README (#29)Tim Burke2017-03-271-2/+2
| | | It was pointing at the wrong repo.
* Fix a ResourceWarning warningsVictor Stinner2016-12-071-7/+9
| | | | Use context managers to ensure that file are always closed.
* Remove python 3.2 testing from travis.yml (#28)Matthew Treinish2016-11-291-1/+0
| | | | This commit removes the python 3.2 testing job from the travis.yml.
* Fixup quickstart and Makefile for README.rst.Robert Collins2015-07-172-2/+5
| | | | I forgot to update these when I added the travis badge.
* Use the newfangled test discovery feature.Robert Collins2015-07-167-89/+9
| | | | I've checked that this generates the same number of tests.
* testrepository/setuptools_command.py: Add loggingMarc Abramowitz2015-07-131-0/+12
| | | | to aid in debugging and testing.
* Fixup NEWS.Robert Collins2015-07-131-1/+4
|
* Add coverage package nameMarc Abramowitz2015-07-131-0/+6
| | | | | | | Allow to specify a different package name than the one from the setp.cfg project. Fixes https://bugs.launchpad.net/testrepository/+bug/1298398
* Closes #1409936: Wrong exception on read errors.Robert Collins2015-07-133-0/+12
| | | | Patch from Matthew Treinish, adapted by me.
* Fix 3.3+ tests with nested classnames.Robert Collins2015-07-121-1/+1
|
* Migrate to pbr for build managementMonty Taylor2015-07-1212-134/+85
| | | | Reduce manual maintenance by using pbr.
* Setup travis.Robert Collins2015-07-121-0/+26
|
* Fix formatting in packages section of setpy.py.Jonathan C. Otsuka2015-03-101-1/+2
|
* Fixup tests with latest testtools.Robert Collins2015-03-102-4/+16
| | | | | | 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.
* Release 0.0.20.0.0.20Robert Collins2014-08-272-2/+5
|
* Tests will be reliably tagged with worker-%d.Robert Collins2014-08-252-3/+13
| | | | | | | | | The previous tagging logic had an implicit race - the tag id was looked up via a closure which gets the state of the pos variable at the position the overall loop has advanced too, not the position when the closure was created. Closes-Bug: #1316858
* Release 0.0.190.0.19Robert Collins2014-08-252-1/+4
|
* Fix 0 timestamps for enumerated but not run tests.Robert Collins2014-08-254-7/+34
| | | | | | | | | 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
* Update docs for the move to github.Robert Collins2014-08-241-0/+1
|
* Make subunit 0.0.18 be a hard dependency.Robert Collins2014-08-243-2/+7
| | | | | | The v2 protocol solves key issues in concurrency and stream handling. Users that cannot use subunit v2 can run an older testrepository, or contact upstream to work through whatever issue is blocking them.
* Move to subunit v2 for output of stored streams.Robert Collins2014-08-246-27/+173
| | | | | | 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 bytesRobert Collins2014-08-245-16/+44
| | | | This is needed to safely output raw subunit v2 streams.
* Ignore .swp files.Robert Collins2014-08-221-0/+1
|
* Added *.pyc to gitignoreAlexei Kornienko2014-08-161-0/+1
|
* Fix python3 filtering support.Clark Boylan2014-05-193-1/+15
| | | | | * Test filtering was failing under python3 and would only apply the filters to the first test listed by discover. (Clark Boylan, #1317607)
* Ignore files in git.Robert Collins2014-03-111-0/+6
|
* Improve error rendering of listing issues.Robert Collins2014-03-032-4/+6
| | | | | Errors are now shown as a stream to the user, and the exception just contains the process exit code.
* * When list-tests encounters an error, a much clearer response willRobert Collins2014-02-113-2/+40
| | | | now be shown. (Robert Collins, #1271133)
* * ``run`` was outputting bad MIME types - test/plain, not text/plain.Robert Collins2014-02-113-2/+8
| | | | (Robert Collins)
* Release 0.0.18.0.0.18Robert Collins2013-11-062-1/+4
|
* * ``run`` now accepts ``--isolated`` as a parameter, which will cause eachRobert Collins2013-11-044-2/+73
| | | | | | 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 testsRobert Collins2013-11-042-14/+21
| | | | that need to test multiple runs to do so. (Robert Collins)