<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/igor.py, branch nedbat/bug1150</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>test: improve zipfile test</title>
<updated>2021-04-14T16:52:39+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-04-14T15:50:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=50cc68846f9b78a4d0984c5a9475203b3c87c1e0'/>
<id>50cc68846f9b78a4d0984c5a9475203b3c87c1e0</id>
<content type='text'>
Before this commit, the GetZipBytesTest.test_get_encoded_zip_files test
was flaky on Python 3.10.0a7.  Since I had just added new files to the
common zip file, I tried splitting the newly added stuff into its own
file, and that seemed to fix the problem.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before this commit, the GetZipBytesTest.test_get_encoded_zip_files test
was flaky on Python 3.10.0a7.  Since I had just added new files to the
common zip file, I tried splitting the newly added stuff into its own
file, and that seemed to fix the problem.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: remove the .egg test</title>
<updated>2021-04-14T10:12:09+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-04-14T10:12:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=e6e6bdfa70a918aeb4f436c1739e7baf75d2e75f'/>
<id>e6e6bdfa70a918aeb4f436c1739e7baf75d2e75f</id>
<content type='text'>
People don't use .egg much anymore, distutils is showing deprecation
warnings, and coverage.py only deals with them the same way it deals
with .zip files, so let's just rely on a .zip test to cover that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
People don't use .egg much anymore, distutils is showing deprecation
warnings, and coverage.py only deals with them the same way it deals
with .zip files, so let's just rely on a .zip test to cover that.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: update pylint</title>
<updated>2021-04-12T00:59:58+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-04-12T00:59:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=84a9b5f2b93e3010428963c35953b425b2d8019f'/>
<id>84a9b5f2b93e3010428963c35953b425b2d8019f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: update to latest pylint</title>
<updated>2021-02-26T17:01:45+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-02-26T17:01:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=f3338803b7b8b4cda34270c4fbf951ad74913980'/>
<id>f3338803b7b8b4cda34270c4fbf951ad74913980</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: nicer publishing of HTML report</title>
<updated>2021-02-25T01:44:17+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-02-24T20:15:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=84cbf083a18a814c501eecb450d7ac4126e74054'/>
<id>84cbf083a18a814c501eecb450d7ac4126e74054</id>
<content type='text'>
Also, this correctly combines results from different runners.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also, this correctly combines results from different runners.
</pre>
</div>
</content>
</entry>
<entry>
<title>style: singleton comparisons should use is</title>
<updated>2021-01-31T14:20:49+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T14:12:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=65b5830a4d13d65c3bb314dd4894d565a16ceb9b'/>
<id>65b5830a4d13d65c3bb314dd4894d565a16ceb9b</id>
<content type='text'>
I guess the original line was wrong, but it would have been nice for
unittest2pytest to fix it for me:
https://github.com/pytest-dev/unittest2pytest/issues/52
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I guess the original line was wrong, but it would have been nice for
unittest2pytest to fix it for me:
https://github.com/pytest-dev/unittest2pytest/issues/52
</pre>
</div>
</content>
</entry>
<entry>
<title>COVERAGE_ONE_TRACER runs just one tracer</title>
<updated>2021-01-10T14:46:18+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-10T13:33:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=3adae9b5cdf67f7364607e3ca7307fa6ebbe1b08'/>
<id>3adae9b5cdf67f7364607e3ca7307fa6ebbe1b08</id>
<content type='text'>
It chooses the appropriate tracer based on the implementation.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It chooses the appropriate tracer based on the implementation.
</pre>
</div>
</content>
</entry>
<entry>
<title>Indicate the git revision if running a local build</title>
<updated>2021-01-10T14:46:18+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-09T14:12:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=fddad86fa5412da63a048012e33e52fb3855523f'/>
<id>fddad86fa5412da63a048012e33e52fb3855523f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove unneeded CI and kitting support</title>
<updated>2020-11-29T00:48:31+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2020-11-29T00:11:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=76e80108c11b042e6e929641fe3f38975f5765ba'/>
<id>76e80108c11b042e6e929641fe3f38975f5765ba</id>
<content type='text'>
We no longer:

    - Use Travis
    - Use AppVeyor
    - Build manylinux wheels locally
    - Build other wheels locally
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We no longer:

    - Use Travis
    - Use AppVeyor
    - Build manylinux wheels locally
    - Build other wheels locally
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't complain about trivial problems in doc/help</title>
<updated>2020-08-19T01:20:56+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2020-08-19T01:20:56+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=624580b7187d65288767ad7dc0915af1fd2e9a8c'/>
<id>624580b7187d65288767ad7dc0915af1fd2e9a8c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
