1

Is it pull request or comment at pull or something else?

http://i.gyazo.com/520f19fb0ef26d69f82488faa2eb3c11.png

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
Kevin7
  • 631
  • 1
  • 7
  • 13

2 Answers2

1

Coverage means "code coverage": the amount of code covered by the unit-test cases.

As seen in this issue, each GitHub project can chose to add as a comment to a PR any additional relevant information (like code coverage for instance).

Continuous Integration system, like for example Travis-CI, can process pull requests, and add comments to them depending on the result of the build done by Travis.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

This blog explains what coverage means in GitHub pretty well.
Here is a section from the blog:

Code coverage is a measure of how well you are testing your project. If a project has 99% coverage, that means that 99% of the lines, functions and/or branches of the files included in your tests are covered by tests. A line, function or branch is covered when said line, function or branch is executed in one or more of your tests.

Here's a link if you want to know more about tests.

falcon lover
  • 87
  • 4
  • 12