I am using simplecov for code coverage. I have no idea what sequence coverage is. I Googled it but I could not find anything, although I did find information about Branch Coverage.
What is sequence coverage?
657 Views Asked by Sushant Bajracharya At
2
There are 2 best solutions below
0

Evidently "Sequence Coverage" is a Shippable CI term. According to Shippable CI's docs, "sequence coverage" just means line coverage. Perhaps they chose that term to contrast to "branch coverage".
The term "Sequence coverage" comes from Shippable CI, not simplecov.
From Shippable's API documentation we can find this:
So branch coverage counts all your code branching such as:
Now if your test suite only tests when a==b, your branch coverage for this file is 50%.
Sequence coverage is the regular line by line coverage report, if your code has 100 lines and during the tests only 70% of the lines have been run, your sequence coverage is 70%.