backend/
-folder; so we have to do cd backend && sbt coverageReport coveralls
git
.git
folder is located at cwd
I have a multi-module SBT project, and some lines from a base module A are tested while running the tests in module B that dependsOn
A, but coveralls seems to only know about lines in A that were run during A's tests
does anyone have any insight into how I can collect coverage data about all files in my project when running any of the modules' tests?
…
[info] Aggregation complete. Coverage was [91.82]
[info] All done. Coverage was [91.82%]
[info] Running coveralls
[info] Repository = ./.git
[error] java.net.ConnectException: Connection timed out (Connection timed out)
[error] at java.net.PlainSocketImpl.socketConnect(Native Method)
[error] at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
[error] at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
[error] at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
[error] at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
[error] at java.net.Socket.connect(Socket.java:589)
[error] at java.net.Socket.connect(Socket.java:538)
…
cobertura.xml
reports used by coveralls plugin.
can we automate SNAPSHOT releases
(via travis master builds) - that would sort out such issues in a systematic way
1.2.4-SNAPSHOT
to Sonatype snapshots repo. Add resolvers += Resolver.sonatypeRepo("snapshots")
to your build, change plugin version to 1.2.4-SNAPSHOT
and push the changes. We will see, if Travis build will succeed.
1.2.5-SNAPSHOT
with some changes listed here. These are things I found worth improving while I was working on previous version.
Hello folks, I'm using sbt-coveralls with circleci. My builds in Coveralls are not detected as PR builds and consequently I don't get PR comments from coveralls bot.
I can see that the CI_PULL_REQUEST
env var is present in my build environment. Also I can see that https://github.com/scoverage/sbt-coveralls/blob/master/src/main/scala/org/scoverage/coveralls/CoverallPayloadWriter.scala#L37 should pick that up. But on the server side my build is listed as 'push`.
Any pointers how can I troubleshoot this further?