<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/tests, branch coverage-4.2b1</title>
<subtitle>github.com: nedbat/coveragepy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/'/>
<entry>
<title>A little more clean-up on the concurrency tests</title>
<updated>2016-07-04T13:34:12+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-07-04T13:34:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=7da3c9558f62fae50c9839a94c66212744512384'/>
<id>7da3c9558f62fae50c9839a94c66212744512384</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Let the concurrency option be multi-valued. #484</title>
<updated>2016-07-04T12:20:11+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-07-04T12:20:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=98539b47a2790255f633260bcd60243dc7b6647c'/>
<id>98539b47a2790255f633260bcd60243dc7b6647c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Refactor concurrency tests to make the pieces more composable</title>
<updated>2016-07-03T12:34:10+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-07-03T12:34:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=1fc4c9681034a2123ce27fa336d16df5dc1cee9c'/>
<id>1fc4c9681034a2123ce27fa336d16df5dc1cee9c</id>
<content type='text'>
--HG--
extra : amend_source : df40db50416bb97691509bf7607aba6ed2b7b205
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
--HG--
extra : amend_source : df40db50416bb97691509bf7607aba6ed2b7b205
</pre>
</div>
</content>
</entry>
<entry>
<title>Update pylint to 1.5.6</title>
<updated>2016-06-25T19:31:22+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-25T19:31:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=e3ee948ff6d9787524ee9f9595408a2652edb1d6'/>
<id>e3ee948ff6d9787524ee9f9595408a2652edb1d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Mark some impossible-to-cover lines</title>
<updated>2016-06-25T18:49:29+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-25T18:49:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=83114f0f816488c8c5ddb083ee310f7b881f4b50'/>
<id>83114f0f816488c8c5ddb083ee310f7b881f4b50</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixes two overlookeds self.skip calls</title>
<updated>2016-06-25T14:08:10+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-25T14:08:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=6444c64d07473508983c7aa4d1fe4e8f33bda0e0'/>
<id>6444c64d07473508983c7aa4d1fe4e8f33bda0e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Combine no longer appends by default</title>
<updated>2016-06-25T12:35:00+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-25T12:35:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=609bd9a53c89d6449ee504c266b3d02c15a097d0'/>
<id>609bd9a53c89d6449ee504c266b3d02c15a097d0</id>
<content type='text'>
Combine used to always load an existing .coverage file. This lead to confusing
results and extra tox-clean steps.  Now the default is to not load the existing
file, though a new --append switch on coverage combine gets you that behavior
if you need it.

This also pointed up an issue with concurrency=multiprocessing, which is that
the child processes automatically used parallel=True, but the parent process
did not.  Now concurrency=multiprocessing implies parallel=True.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Combine used to always load an existing .coverage file. This lead to confusing
results and extra tox-clean steps.  Now the default is to not load the existing
file, though a new --append switch on coverage combine gets you that behavior
if you need it.

This also pointed up an issue with concurrency=multiprocessing, which is that
the child processes automatically used parallel=True, but the parent process
did not.  Now concurrency=multiprocessing implies parallel=True.
</pre>
</div>
</content>
</entry>
<entry>
<title>Prevent subprocess measurement from measuring coverage commands. #492</title>
<updated>2016-06-24T14:41:15+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-24T14:41:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=e058c1162e9d1c0f405a2f3a0fe55338a515f770'/>
<id>e058c1162e9d1c0f405a2f3a0fe55338a515f770</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up the previous commit that adds a test for #492</title>
<updated>2016-06-24T12:14:05+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-24T12:14:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=88c1f13daeae9804f99b7788999464ed39f6aabd'/>
<id>88c1f13daeae9804f99b7788999464ed39f6aabd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Cleanup test case #492</title>
<updated>2016-06-24T11:56:45+00:00</updated>
<author>
<name>Dan Riti</name>
<email>dmriti@gmail.com</email>
</author>
<published>2016-06-24T11:56:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=19d9cfdbfb71ea8420bf9fa8c5db27de422e7239'/>
<id>19d9cfdbfb71ea8420bf9fa8c5db27de422e7239</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
