<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy-git.git, branch nedbat/unittest2pytest</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>style: fix long lines and avoid backslashes</title>
<updated>2021-01-31T15:10:47+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T15:10:47+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=d02be78c3a0ee3022be56c623bb9bdcad1e9acd4'/>
<id>d02be78c3a0ee3022be56c623bb9bdcad1e9acd4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: quiet a silly pylint warning</title>
<updated>2021-01-31T15:09:41+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T15:09:41+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=a035bde3320a501720ae722dc6b54fe7ff5c8647'/>
<id>a035bde3320a501720ae722dc6b54fe7ff5c8647</id>
<content type='text'>
It's good in tests to use `assert "expected" == actual()`, so why is
pylint all up in my grill about it?
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's good in tests to use `assert "expected" == actual()`, so why is
pylint all up in my grill about it?
</pre>
</div>
</content>
</entry>
<entry>
<title>style: correct placement of auto-added pytest imports</title>
<updated>2021-01-31T15:08:59+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T14:18:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=2faae252d853572cf7403528075461569ac137d1'/>
<id>2faae252d853572cf7403528075461569ac137d1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</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://91.123.203.49/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>refactor: mark an internal method</title>
<updated>2021-01-31T14:20:49+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T13:34:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=4bad09744d80c6123e77252d5db09a31db25297b'/>
<id>4bad09744d80c6123e77252d5db09a31db25297b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test: adapt to pytest assertion messages</title>
<updated>2021-01-31T14:20:49+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T13:16:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=716b31214126c4a06d8262a62153e5d1fa45fa54'/>
<id>716b31214126c4a06d8262a62153e5d1fa45fa54</id>
<content type='text'>
Bare "assert" statements don't produce the same assertion message as
self.assertEqual did: they don't include the two values compared.  For
some of our own asserts, add back the detailed message.  For some checks
of asserts, it's fine that the values are missing because the longer
messsage includes the information.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bare "assert" statements don't produce the same assertion message as
self.assertEqual did: they don't include the two values compared.  For
some of our own asserts, add back the detailed message.  For some checks
of asserts, it's fine that the values are missing because the longer
messsage includes the information.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: fix unittest2pytest brokenness</title>
<updated>2021-01-31T14:20:43+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T12:41:50+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=6e93714d655c87e62cd03a4ff3e1739245b684b9'/>
<id>6e93714d655c87e62cd03a4ff3e1739245b684b9</id>
<content type='text'>
unittest2pytest created syntax errors, reported here:
https://github.com/pytest-dev/unittest2pytest/issues/51

This commit fixes them back.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
unittest2pytest created syntax errors, reported here:
https://github.com/pytest-dev/unittest2pytest/issues/51

This commit fixes them back.
</pre>
</div>
</content>
</entry>
<entry>
<title>refactor: unittest2pytest -w tests</title>
<updated>2021-01-31T12:16:56+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-31T12:16:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=843de4ea235e7eee3ff24a39a2f8b14da9ef0db0'/>
<id>843de4ea235e7eee3ff24a39a2f8b14da9ef0db0</id>
<content type='text'>
One step of moving to pure pytest tests.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
One step of moving to pure pytest tests.
</pre>
</div>
</content>
</entry>
<entry>
<title>build: clearly label auto-generated files</title>
<updated>2021-01-30T23:20:40+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-30T23:19:57+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=4fc64a97ce779c2d6bb972f0003b9b9f00e62c3a'/>
<id>4fc64a97ce779c2d6bb972f0003b9b9f00e62c3a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>build: next version will be 5.5</title>
<updated>2021-01-30T23:20:40+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2021-01-30T23:14:40+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy-git.git/commit/?id=814023c72082c75684259b7980f7b3465785b110'/>
<id>814023c72082c75684259b7980f7b3465785b110</id>
<content type='text'>
Since we've added a feature (combine --keep).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since we've added a feature (combine --keep).
</pre>
</div>
</content>
</entry>
</feed>
