<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-coveragepy.git/coverage/summary.py, branch coverage-5.0a1</title>
<subtitle>bitbucket.org: Obsolete (use python-coveragepy-git)
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/'/>
<entry>
<title>Reporting doesn't work on Jython, so don't run reporting tests there.</title>
<updated>2017-01-14T15:01:03+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2017-01-14T15:01:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=11ac7823c5b2239b9b9a38c7de0650eb1f9c99c0'/>
<id>11ac7823c5b2239b9b9a38c7de0650eb1f9c99c0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>report must ignore skipped files #524</title>
<updated>2016-12-12T16:03:20+00:00</updated>
<author>
<name>loic</name>
<email>loic@dachary.org</email>
</author>
<published>2016-12-12T16:03:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=b02427b7ba3cf7774c1932d8ecfbe24b3427b1e0'/>
<id>b02427b7ba3cf7774c1932d8ecfbe24b3427b1e0</id>
<content type='text'>
When files are 100% covered and --skipped-covered is specified, they
must not be taken into account to format the text report. It is
specially useful when a long filename is skipped.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When files are 100% covered and --skipped-covered is specified, they
must not be taken into account to format the text report. It is
specially useful when a long filename is skipped.
</pre>
</div>
</content>
</entry>
<entry>
<title>Properly handle invalid sorting option</title>
<updated>2016-06-10T02:56:52+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-10T02:56:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=8493f3b8e440bab6f8a24df8257093d977e38482'/>
<id>8493f3b8e440bab6f8a24df8257093d977e38482</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix these new tests to really test the code</title>
<updated>2016-06-10T02:29:00+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-10T02:29:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=83aa28fa8236b9dc2f1f0154e9962b02fe49a50e'/>
<id>83aa28fa8236b9dc2f1f0154e9962b02fe49a50e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>More tweaks to report sorting</title>
<updated>2016-06-09T11:54:21+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-06-09T11:54:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=35fde077ef2e5ca7fa8eae32cc576394e410afbc'/>
<id>35fde077ef2e5ca7fa8eae32cc576394e410afbc</id>
<content type='text'>
* Option is case-insensitive.

* Can no longer sort by "Missing", because it's nonsense.

* Can sort by the branch-sensitive columns.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Option is case-insensitive.

* Can no longer sort by "Missing", because it's nonsense.

* Can sort by the branch-sensitive columns.
</pre>
</div>
</content>
</entry>
<entry>
<title>Issue 199: Sort text report.</title>
<updated>2016-06-08T23:51:55+00:00</updated>
<author>
<name>Dan Wandschneider</name>
<email>daniel.wandschneider@schrodinger.com</email>
</author>
<published>2016-06-08T23:51:55+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=50535ae9b23ce336fcc84e11c3546ab75c1e55b8'/>
<id>50535ae9b23ce336fcc84e11c3546ab75c1e55b8</id>
<content type='text'>
Allows sorting of the text report based on:
 Name, Stmts, Miss, Cover

Tested on Mac with Python 2.7.11 and Python 3.5

Help message for the new option is:
python -m coverage report -h
  ...
  --sort=SORT           Sort report by a column. Valid values are: Name,
                        Stmts, Miss, Cover.
  ...
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows sorting of the text report based on:
 Name, Stmts, Miss, Cover

Tested on Mac with Python 2.7.11 and Python 3.5

Help message for the new option is:
python -m coverage report -h
  ...
  --sort=SORT           Sort report by a column. Valid values are: Name,
                        Stmts, Miss, Cover.
  ...
</pre>
</div>
</content>
</entry>
<entry>
<title>This didn't need to be an attribute on the object</title>
<updated>2016-05-10T16:37:21+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-05-10T16:37:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=d61be94db1fc5883a06f3a0eed262ffb1432ddda'/>
<id>d61be94db1fc5883a06f3a0eed262ffb1432ddda</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add a missing docstring.</title>
<updated>2016-01-18T23:59:03+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-01-18T23:59:03+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=c67e5b03f367654f3cb9c130a87dbe1df3e618af'/>
<id>c67e5b03f367654f3cb9c130a87dbe1df3e618af</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Plain-text output no longer includes trailing spaces</title>
<updated>2016-01-17T17:51:09+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2016-01-17T17:51:09+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=e27ab798b8efb4067ed0bafd75627ae724dcfad5'/>
<id>e27ab798b8efb4067ed0bafd75627ae724dcfad5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Try a different strategy for setting and testing output encodings</title>
<updated>2015-10-31T16:02:49+00:00</updated>
<author>
<name>Ned Batchelder</name>
<email>ned@nedbatchelder.com</email>
</author>
<published>2015-10-31T16:02:49+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-coveragepy.git/commit/?id=f3c5a81b391030a5bca0e5de3cea6efd36cc35cf'/>
<id>f3c5a81b391030a5bca0e5de3cea6efd36cc35cf</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
