<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/coverage/html.py, branch 7.2.0</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>mypy: html.py</title>
<updated>2023-01-12T12:13:36+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2023-01-12T12:13:36+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=8fba8f18806b10e3713c124db538976527b7514d'/>
<id>8fba8f18806b10e3713c124db538976527b7514d</id>
<content type='text'>
The squishiness of IndexInfoDict.nums is frustrating.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The squishiness of IndexInfoDict.nums is frustrating.
</pre>
</div>
</content>
</entry>
<entry>
<title>mypy: control.py is checked</title>
<updated>2023-01-01T01:39:09+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-12-31T22:17:12+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=5a72a1eb736516759201b223463f69f00979818e'/>
<id>5a72a1eb736516759201b223463f69f00979818e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>mypy: check tests/goldtest.py, tests/test_html.py</title>
<updated>2022-12-31T19:53:21+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-12-31T19:53:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=bf73b37080c3c6deec969a555b45b70ee6727b13'/>
<id>bf73b37080c3c6deec969a555b45b70ee6727b13</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: next/prev links in HTML report don't link to skipped files.</title>
<updated>2022-05-20T01:33:31+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-05-20T01:33:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=78c0915d1638e2077d55989b1de856fe40378fce'/>
<id>78c0915d1638e2077d55989b1de856fe40378fce</id>
<content type='text'>
Previously, the next link might refer to a file that was skipped because it was
empty or 100% covered.  Now they do not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, the next link might refer to a file that was skipped because it was
empty or 100% covered.  Now they do not.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: thanks for the new keyboard shortcuts</title>
<updated>2022-05-19T16:41:17+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-05-01T11:35:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=56ccf323dbcc5e8e028400cfab49b54148710d34'/>
<id>56ccf323dbcc5e8e028400cfab49b54148710d34</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: more html keyboard shortcuts</title>
<updated>2022-05-19T16:40:23+00:00</updated>
<author>
<name>J. M. F. Tsang</name>
<email>j.m.f.tsang@cantab.net</email>
</author>
<published>2022-04-21T23:32:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=5b2e525e4cf635db5c8149850fbd0732236b9711'/>
<id>5b2e525e4cf635db5c8149850fbd0732236b9711</id>
<content type='text'>
On each page the shortcuts '[' and ']' will take you to the previous and
next files respectively. On the index page they take you to the final
and first files respectively.

Pressing 'u' while on a file will now take you back to index.html, like
on Gerrit.

'?' opens and closes the help panel.

Test cases:

    $ pytest --cov-report html --cov=. tests.py

in a directory with just tests.py, then with one, two or three .py
files.

Tested on Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:99.0) Gecko/20100101 Firefox/99.0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
On each page the shortcuts '[' and ']' will take you to the previous and
next files respectively. On the index page they take you to the final
and first files respectively.

Pressing 'u' while on a file will now take you back to index.html, like
on Gerrit.

'?' opens and closes the help panel.

Test cases:

    $ pytest --cov-report html --cov=. tests.py

in a directory with just tests.py, then with one, two or three .py
files.

Tested on Mozilla/5.0 (Macintosh; Intel Mac OS X 10.12; rv:99.0) Gecko/20100101 Firefox/99.0
</pre>
</div>
</content>
</entry>
<entry>
<title>style: parens should indent the same as their opening line</title>
<updated>2022-05-01T17:00:38+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-05-01T12:16:06+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=420c01394a31415d7a7cbb80be196bcfca48482c'/>
<id>420c01394a31415d7a7cbb80be196bcfca48482c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix: don't write a .gitignore unless the directory is empty</title>
<updated>2022-01-12T00:20:58+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2022-01-11T23:57:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=6cbbc90dcd89d8499191a75133a6e2b29f52270a'/>
<id>6cbbc90dcd89d8499191a75133a6e2b29f52270a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: specialize exceptions</title>
<updated>2021-11-14T16:41:23+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-14T00:23:24+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=1c29ef3e4b871508bb2defd6b47b9a745547b626'/>
<id>1c29ef3e4b871508bb2defd6b47b9a745547b626</id>
<content type='text'>
CoverageException is fine as a base class, but not good to use for
raising (and catching sometimes).  Introduce specialized exceptions that
allow third-party tools to integrate better.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CoverageException is fine as a base class, but not good to use for
raising (and catching sometimes).  Introduce specialized exceptions that
allow third-party tools to integrate better.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: a plural helper</title>
<updated>2021-11-13T17:33:11+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-13T17:20:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=ec48227a1f00cf2b00298d8189f1265daaa447d6'/>
<id>ec48227a1f00cf2b00298d8189f1265daaa447d6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
