lemurheavy / coveralls-public

The public issue tracker for coveralls.io
http://coveralls.io
124 stars 7 forks source link

No data available in Source Files #945

Closed pintux closed 7 years ago

pintux commented 7 years ago

Hi, source code for my github project is not listed under the project Source Files section. Project is: https://coveralls.io/github/vivocha/api-piki Any idea? Many thanks. Antonio

lthurner commented 7 years ago

I have the same problem: https://coveralls.io/github/lthurner/pandapower

It was still working until build #105: https://coveralls.io/builds/10674704 and then suddenly all files were gone in #106: https://coveralls.io/builds/10695748

mseminatore commented 7 years ago

I am seeing the same issue

nickmerwin commented 7 years ago

Hi all, this issue is fixed now -- sorry for the confusion!

mseminatore commented 7 years ago

@nickmerwin Confirmed that I see source file information now. Thanks! However, and not sure if it is related but now the badge next to the source file reports a cov% that is different than the regular badge. See https://coveralls.io/builds/10773579/source?filename=TeslaJS.js for an example - 91.75% vs. 93.827%.

pintux commented 7 years ago

@nickmerwin: It works now, many thanks!

nickmerwin commented 7 years ago

Hi @mseminatore that file coverage % includes branch coverage; each branch is treated like a line, so:

(304 + 74) / (324 + 88) = 0.9174

mseminatore commented 7 years ago

Thanks for the clarification!