<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git/tests/test_cmdline.py, branch nedbat/bug989</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>docs: document the exceptions</title>
<updated>2021-11-14T12:44:57+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-14T00:00:51+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=342e7da2941ae5291f1a94b6ad66ce489f6985fe'/>
<id>342e7da2941ae5291f1a94b6ad66ce489f6985fe</id>
<content type='text'>
... and make some of them private.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... and make some of them private.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: add a test of `coverage debug premain`</title>
<updated>2021-11-13T23:38:34+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-13T23:27:11+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=7001b8cd818e09d56af02de15612cee8747dd500'/>
<id>7001b8cd818e09d56af02de15612cee8747dd500</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>debug: the `coverage debug` command no longer accepts multiple topics</title>
<updated>2021-11-13T23:27:44+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-13T23:17:16+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=ff2b70a39bbe5f6b6e1752e4664fad64211d2280'/>
<id>ff2b70a39bbe5f6b6e1752e4664fad64211d2280</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: 'debug data' now enumerates combinable files also</title>
<updated>2021-11-13T17:33:11+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-13T13:09:19+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=5ca980dabd71aa74d90351a6d4e88cf101d65ded'/>
<id>5ca980dabd71aa74d90351a6d4e88cf101d65ded</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: add_lines only needs an iterable of ints</title>
<updated>2021-11-13T17:05:08+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-13T16:54:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=9a72bf4bc964bc8062627d6ecd6fb8c8d1e5dec6'/>
<id>9a72bf4bc964bc8062627d6ecd6fb8c8d1e5dec6</id>
<content type='text'>
The old code expected a dict with int keys, but iterables are simpler, so get
rid of a lot of dict.fromkeys() nonsense.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The old code expected a dict with int keys, but iterables are simpler, so get
rid of a lot of dict.fromkeys() nonsense.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(test): use the expected name for initializing tests.</title>
<updated>2021-11-07T22:41:22+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-07T22:41:22+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=2a2293cafb6b322eb3329b5a7abd98435c56f361'/>
<id>2a2293cafb6b322eb3329b5a7abd98435c56f361</id>
<content type='text'>
Originally I used setup_test because something went wrong when I used setUp.  I
wrote https://github.com/pytest-dev/pytest/issues/8424 about it.  There they say
to use `-p no:nose` to disable nose interpretation.

But now I simply went back to setUp, and all seems well? Not sure what changed,
but using the expected name is better.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Originally I used setup_test because something went wrong when I used setUp.  I
wrote https://github.com/pytest-dev/pytest/issues/8424 about it.  There they say
to use `-p no:nose` to disable nose interpretation.

But now I simply went back to setUp, and all seems well? Not sure what changed,
but using the expected name is better.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(test): make traceback checks a bit flexible</title>
<updated>2021-11-04T12:08:48+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-11-04T11:54:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=a89f40e4c01fcb6c5a50eb42dc372454446693eb'/>
<id>a89f40e4c01fcb6c5a50eb42dc372454446693eb</id>
<content type='text'>
Python 3.11 made a traceback look like this:

    Traceback (most recent call last):
      File "{path}", line 8, in &lt;module&gt;
        print(sys.argv[1])
              ~~~~~~~~^^^
    IndexError: list index out of range

We needed to not care if that tilde-caret line was present or not.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Python 3.11 made a traceback look like this:

    Traceback (most recent call last):
      File "{path}", line 8, in &lt;module&gt;
        print(sys.argv[1])
              ~~~~~~~~^^^
    IndexError: list index out of range

We needed to not care if that tilde-caret line was present or not.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: xml and json say what they are doing, and -q quiets everything. #1254</title>
<updated>2021-10-26T23:17:19+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-10-26T23:07:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=93c9ca9f1b2e5d0b45dbf4b82c77aaf05b458bac'/>
<id>93c9ca9f1b2e5d0b45dbf4b82c77aaf05b458bac</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: alphabetize the options</title>
<updated>2021-10-26T11:54:42+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-10-26T11:02:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=8e8fdb4308c56375a1463fa65de7e84303610522'/>
<id>8e8fdb4308c56375a1463fa65de7e84303610522</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor(test): os_sep and remove_tree helpers</title>
<updated>2021-10-24T13:53:53+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-10-24T13:53:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=20baf284341555803d800ec4c248fd0f1b5351f1'/>
<id>20baf284341555803d800ec4c248fd0f1b5351f1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
