<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git, branch nedbat/test-branch</title>
<subtitle>github.com: nedbat/coveragepy.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/'/>
<entry>
<title>temp: nop change</title>
<updated>2021-08-31T20:25:24+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-31T20:25:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=c0ddb76f5d16d00dbac7dcbc04b1220d0650aab9'/>
<id>c0ddb76f5d16d00dbac7dcbc04b1220d0650aab9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: don't over-run actions</title>
<updated>2021-08-31T20:24:48+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-31T20:24:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=1d8f7440b054efe9a1af61925dc060dcf6324896'/>
<id>1d8f7440b054efe9a1af61925dc060dcf6324896</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add link to coverage.py twitter account to project urls (#1217)</title>
<updated>2021-08-30T22:25:20+00:00</updated>
<author>
<name>Asher Foa</name>
<email>asher@toolchain.com</email>
</author>
<published>2021-08-30T22:25:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=6ded3a5183a126db3ee6704388cd95fd702c6709'/>
<id>6ded3a5183a126db3ee6704388cd95fd702c6709</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: defend against a local PYTHONPYCACHEPREFIX setting</title>
<updated>2021-08-30T01:36:24+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-30T01:36:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=f8b11442aae7fffcb093534f9a5e5081fdeffabb'/>
<id>f8b11442aae7fffcb093534f9a5e5081fdeffabb</id>
<content type='text'>
I had PYTYHONPYCACHEPREFIX=/tmp/pyc in my local shell, which put pyc
files elsewhere.  A few tests care very much about .pyc files, so those
tests failed.  This setting in tox.ini will ensure that .pyc files are
written locally so the tests will pass.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I had PYTYHONPYCACHEPREFIX=/tmp/pyc in my local shell, which put pyc
files elsewhere.  A few tests care very much about .pyc files, so those
tests failed.  This setting in tox.ini will ensure that .pyc files are
written locally so the tests will pass.
</pre>
</div>
</content>
</entry>
<entry>
<title>fixes typo in kit workflow (#1215)</title>
<updated>2021-08-23T16:50:08+00:00</updated>
<author>
<name>Luis Nell</name>
<email>luis.nell@codista.com</email>
</author>
<published>2021-08-23T16:50:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=23c8ea68e19922450632516607e548a78f017b01'/>
<id>23c8ea68e19922450632516607e548a78f017b01</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: use sets to collect data</title>
<updated>2021-08-15T12:26:36+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-15T12:26:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=db235732dd9a0198f6e5d00b895baa516221fee2'/>
<id>db235732dd9a0198f6e5d00b895baa516221fee2</id>
<content type='text'>
Coverage.py predates sets as a built-in data structure, so the file data
collection has long been dicts with None as the values.  Sets are
available to us now (since Python 2.4 in 2004, which coverage.py dropped
support for in 2014!), we use sets.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Coverage.py predates sets as a built-in data structure, so the file data
collection has long been dicts with None as the values.  Sets are
available to us now (since Python 2.4 in 2004, which coverage.py dropped
support for in 2014!), we use sets.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: missing exceptions through with statements in 3.10 aren't considered missing branches.  #1205</title>
<updated>2021-08-14T23:28:18+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-14T23:24:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=f6d3e88ba5b2dab1720281885c99cdf3ce2844bc'/>
<id>f6d3e88ba5b2dab1720281885c99cdf3ce2844bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: move a test helper to CoverageTest</title>
<updated>2021-08-14T23:22:36+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-14T23:22:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=a996e357d1e82c8ed08cda0a43a5ab0fa05f68fd'/>
<id>a996e357d1e82c8ed08cda0a43a5ab0fa05f68fd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: a part-covered comprehension</title>
<updated>2021-08-09T20:56:38+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-09T20:36:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=6c8ccb13e0dc78bed148fb0c1626e93429704a30'/>
<id>6c8ccb13e0dc78bed148fb0c1626e93429704a30</id>
<content type='text'>
The comprehension would only completely finish (-&gt;exit) if the assert
was going to fail.  So we expect it to not finish.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The comprehension would only completely finish (-&gt;exit) if the assert
was going to fail.  So we expect it to not finish.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: simplify pyc logic</title>
<updated>2021-08-09T20:24:10+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-09T20:24:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=f5621baca33e193f03286acf998a92ac67f3b723'/>
<id>f5621baca33e193f03286acf998a92ac67f3b723</id>
<content type='text'>
The old pycache_prefix logic was because we would run tests in Docker
containers, and they went faster if we set PYTHONCACHEPREFIX.  But we
don't do that anymore, so we can use simpler code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The old pycache_prefix logic was because we would run tests in Docker
containers, and they went faster if we set PYTHONCACHEPREFIX.  But we
don't do that anymore, so we can use simpler code.
</pre>
</div>
</content>
</entry>
</feed>
