Skip to content

Commit d4b284f

Browse files
committed
fix(docs): remove coveralls badge and mentions of coverage stats
The "95% passing" badge is stale since we don't use Travis-ci.org now, and regardless was only summarizing coverage on the controller/ subproject. It would be great to roll up the coverage stats we do have in the Go and Python subprojects and summarize that number in the README, but for now we should hide this misleading number. Likewise, the .travis.yml file was removed as it can only lead people astray at this point.
1 parent 1aa3251 commit d4b284f

3 files changed

Lines changed: 4 additions & 60 deletions

File tree

.travis.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
Deis (pronounced DAY-iss) is an open source PaaS that makes it easy to deploy and manage applications on your own servers. Deis builds upon [Docker](http://docker.io/) and [CoreOS](http://coreos.com) to provide a lightweight PaaS with a [Heroku-inspired](http://heroku.com) workflow.
44

55
[![Build Status](https://travis-ci.org/deis/deis.png?branch=master)](https://travis-ci.org/deis/deis)
6-
[![Coverage Status](https://coveralls.io/repos/deis/deis/badge.png?branch=master)](https://coveralls.io/r/deis/deis?branch=master)
76
[![Current Release](http://img.shields.io/badge/release-v0.10.0-blue.svg)](https://github.com/deis/deis/releases/tag/v0.10.0)
87

98
![Deis Graphic](https://s3-us-west-2.amazonaws.com/deis-images/deis-graphic.png)

docs/contributing/standards.rst

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ setup.cfg file in the project root.
6060
-----------------
6161

6262
Once your code passes the style checker, run the test suite and
63-
ensure that everything passes and that code coverage has not declined.
63+
ensure that everything passes.
6464

6565
.. code-block:: console
6666
@@ -77,17 +77,9 @@ ensure that everything passes and that code coverage has not declined.
7777
coverage html
7878
7979
If a test fails, fixing it is obviously the first priority. And if you
80-
have introduced new code, it must be accompanied by unit tests.
81-
82-
In the example above, all tests passed and ``coverage`` created a report
83-
of what code was exercised while the tests were running. Open the file
84-
``htmlcov/index.html`` under the project's root and ensure that the
85-
overall coverage percentage has not receded as a result of your
86-
changes. Current test coverage can be found here:
87-
88-
.. image:: https://coveralls.io/repos/deis/deis/badge.png?branch=master
89-
:target: https://coveralls.io/r/deis/deis?branch=master
90-
:alt: Coverage Status
80+
have introduced new code, it must be accompanied by unit tests. A report
81+
of what lines of code were exercised by the tests will be
82+
in htmlcov/index.html.
9183

9284

9385
.. _pull_request:

0 commit comments

Comments
 (0)