Questions tagged [coveralls]

Coveralls is a code test coverage tool and associated service to display the code test coverage trends.

Coveralls is a code test coverage tool and associated service to display the code test coverage trends. Coveralls offers good integration with travis, is free for open-source projects and also supports a large set of languages and hence is a popular choice for projects on github. The coverage image you see on many github readme files is generated using coveralls.

122 questions
1
vote
1 answer

coveralls doesn't recognize token when dockerized django app is run in TravisCI, but only from pull requests

I'm getting this error from TravisCI when it tries to run a Pull Request coveralls.exception.CoverallsException: Not on TravisCI. You have to provide either repo_token in .coveralls.yml or set the COVERALLS_REPO_TOKEN env var. The command…
43Tesseracts
  • 4,617
  • 8
  • 48
  • 94
1
vote
0 answers

How can I migrate from sbt-coveralls to GitHub Actions?

I've been using Travis with sbt-scoverage + sbt-coveralls and now want to try Github Actions. I've been able to do my coverage in my Action but the GitHub Action for Coveralls.io fails because no lcov.info file is generated. I'm not aware that…
Greg
  • 10,696
  • 22
  • 68
  • 98
1
vote
2 answers

Coveralls is not being submitted on a Django app with Docker

I'm working on a Django project using Docker. I have configured Travis-Ci and I want to submit test coverage to coveralls. However, it is not working as expected. any help will be highly appreciated. Here is the error I'm getting Submitting coverage…
1
vote
1 answer

Why am I getting compile error when running mix coveralls

I'm getting this error when trying to run the task mix coveralls. ** (exit) an exception was raised: ** (MatchError) no match of right hand side value: :error cover.erl:1580: :cover.do_compile_beam2/5 cover.erl:1480:…
1
vote
3 answers

Coveralls plugin for jenkins CI?

Background After a lot of hard work we finally got a Jenkins CI pulling code from out GitHub repositories and are now doing Continuous Integration as well as Deployment. We get the code and only deploy it if all the tests pass, as usual. Now I…
Flame_Phoenix
  • 16,489
  • 37
  • 131
  • 266
1
vote
1 answer

How to show branch coverage for C++ project on coveralls.io?

I am using the coveralls.io service to display line coverage for my C++ project. I also want to track branch coverage, but cannot get it to work. On Travis CI, I use this call to generate the coverage report: coveralls -r -b…
olq_plo
  • 1,002
  • 10
  • 18
1
vote
0 answers

C++ Coveralls show that files are covered but they are not

I am using GCC compiler with -g -O0 -fprofile-arcs -ftest-coverage flags. It generates *.gcda files of the source code files which has tests. I am using github.com/eddyxu/cpp-coveralls for coverage upload. The problem is that Coveralls shows that…
Ugnius Malūkas
  • 2,649
  • 7
  • 29
  • 42
1
vote
1 answer

express-node test coverage w Istanbul/mocha Error: ENOENT: no such file or directory node_modules/istanbul-reports/lib/html/assets

using "babel-cli": "6.18.0", "babel-core": "6.18.0", "babel-plugin-add-module-exports": "0.2.1", "babel-preset-es2015": "6.16.0", "babel-preset-stage-2": "6.18.0", "coveralls": "^2.13.0", "istanbul": "1.1.0-alpha.1", "mocha": "3.2.0", when I run…
user762579
1
vote
1 answer

Coveralls code coverage in Rails is misleading

We are currently using Coveralls for code coverage of our Rails projects. The coverage results it is giving us are really unreliable. I have on numerous occasions found classes which have not been spec'd, written specs for them and then watched…
Donovan Thomson
  • 2,375
  • 3
  • 17
  • 25
1
vote
1 answer

Instruct Jacoco and Coveralls to ignore some files from the report

I use Coveralls in a Java project with Maven to create a coverage report for my project and I want to avoid some classes from being included in the coverage computation. Now, I think that I the build phase I can exlcude the class, e.g.…
mat_boy
  • 12,998
  • 22
  • 72
  • 116
1
vote
1 answer

Travis CI, Atoum and Coveralls for a PHP project

Fairly new to the CI game. I'm trying to get Travis CI and Coveralls working together and having a bit of trouble with it. The project in question is written in PHP and being tested with Atoum. My current .travis.yml file contains the following and…
Speedy
  • 467
  • 1
  • 6
  • 16
1
vote
2 answers

error on easy_install cpp-coveralls

It happens to me that most of the builds are compiled correctly, but from time to time the same error appears (without changing any .travis.yml parameter) The error is: The command "sudo easy_install cpp-coveralls" failed and exited with 1 during…
1
vote
1 answer

Maven coveralls plugin

I'm using travis CI and coveralls for a project. I get the error Processing of input or output data failed: Report submission to Coveralls API failed with HTTP status 422: Unprocessable Entity (Couldn't find a repository matching this job.). You can…
ogdabou
  • 582
  • 1
  • 10
  • 41
1
vote
1 answer

How can I get coveralls to ignore code from gems my gem has as dependencies?

I've made a small gem (SmsSafe), and it currently has 100% code coverage (according to SimpleCov). However, according to Coveralls, it only has 41% coverage (report here). The reason for that difference seems to be that coveralls is taking the code…
Daniel Magliola
  • 30,898
  • 61
  • 164
  • 243
1
vote
1 answer

How to build on travis-ci with gradle and cobertura

Today I've tried to connect my travis-ci with coveralls using cobertura reports. Unfortunatelly after adding cobertura to my project travis cannot succeed in building my project. Here's exemplary build:…
Bartek Andrzejczak
  • 1,292
  • 2
  • 14
  • 27
1 2 3
8 9