<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/tests, branch 6.0</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: fix flaky multiprocessing tests</title>
<updated>2021-09-29T22:46:52+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-09-29T22:46:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=4d61fff19caa797947d8818d711227ad85a8aed5'/>
<id>4d61fff19caa797947d8818d711227ad85a8aed5</id>
<content type='text'>
Tests are failing because we expect to see three different pids, but
only get two.  Is that because the work is being completed too quickly?
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Tests are failing because we expect to see three different pids, but
only get two.  Is that because the work is being completed too quickly?
</pre>
</div>
</content>
</entry>
<entry>
<title>test: another test suggested by Mark Shannon</title>
<updated>2021-09-01T00:46:22+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-06-21T10:52:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=c0a981148c05c0332e2fd51d426d880055959ca6'/>
<id>c0a981148c05c0332e2fd51d426d880055959ca6</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://git.baserock.org/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://git.baserock.org/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://git.baserock.org/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://git.baserock.org/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://git.baserock.org/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>
<entry>
<title>test: exclude one last line in test_api.py</title>
<updated>2021-08-09T12:29:07+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-09T12:29:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=5a4f125853b5056f98d80162687b6d1eace38ea1'/>
<id>5a4f125853b5056f98d80162687b6d1eace38ea1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: add a test for #1205 bpo-44840</title>
<updated>2021-08-09T10:29:31+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-09T10:29:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=e6f37f6ff184b4e9d2dad75386ddeb03bf492fd4'/>
<id>e6f37f6ff184b4e9d2dad75386ddeb03bf492fd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: mention skipped file counts in the HTML report. #1163</title>
<updated>2021-08-06T11:05:50+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-08-06T11:05:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-coveragepy-git.git/commit/?id=a99b27f730a262585514cc358213aa5d4c350c11'/>
<id>a99b27f730a262585514cc358213aa5d4c350c11</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
