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
2
votes
0 answers

PHP: How to test my REST API

I created a API and would like to test it. My initial thoughts was to use an API client, which I did, I used guzzlehttp, but after deploying the app to heroku and using travis and coveralls to build my test, it turns out coveralls is not able to see…
George
  • 3,757
  • 9
  • 51
  • 86
2
votes
1 answer

Coveralls in travis-ci

I have a repository in github using travis-ci https://github.com/alu0100786330/prct09 And I want to integrate coverall with travis, I'm using cloud9 and this is the URL https://ide.c9.io/alu0100786330/prt9 I add to the Gemspec this lines gem…
elvaqueroloconivel1
  • 889
  • 2
  • 8
  • 11
2
votes
1 answer

Get error when running Coverall.io (.net 1.3.4) on AppVeyor (Default Azure Environment)

Looks like this is an environment issue, when I run the coverall tool and the AppVeyor server says it doesn't contain the Azure TableEntity under the Jenkins workspace. packages\coveralls.io.1.3.4\tools\coveralls.net.exe --opencover coverage.xml An…
Ryan Chu
  • 1,381
  • 13
  • 20
2
votes
0 answers

What are the pro's and cons between the two coveralls python packages?

Coveralls.io has two pip plugins referenced from its docs at https://coveralls.zendesk.com/hc/en-us/articles/201342869-Python E.g. https://github.com/z4r/python-coveralls and https://github.com/coagulant/coveralls-python I've seen docs and projects…
2
votes
1 answer

100% code coverage with different PHP versions in Travis-CI

I'm working on my pet-project Pipes and try to keep as close as possible to the 100% code coverage (I'm using Coveralls) for that). The problem I'm facing is: how to get 100% code coverage with different PHP versions? As of now, my project doesn't…
tacone
  • 11,371
  • 8
  • 43
  • 60
2
votes
1 answer

Coveralls.io: How to load the gem 'coveralls' when developing a gem itself (not an app)?

I want to use Coveralls.io for my gem Headhunter that I'm developing at the moment. The doc says, I should simply add gem 'coveralls', require: false to the project, but as far as I know, this isn't the right way to load gems within another gem.…
Joshua Muheim
  • 12,617
  • 9
  • 76
  • 152
1
vote
2 answers

Why is `coverallsapp/github-action@v2` saying "Nothing to report" when I have a coverage directory generated by c8?

I am running tests and collecting coverage with Vitest configured to use the c8 coverage library. This seems to be working because when the tests finish, I get a coverage report in the terminal and a directory named coverage is created with all…
Shawn
  • 10,931
  • 18
  • 81
  • 126
1
vote
1 answer

Coveralls 422: `Couldn't find a repository matching this job. `

I have just configured this repo to use coveralls actions as a coverage badge, created the secret as in the image below: And as you can see in here, I am using the correct secret. However, everytime I run this job I get the response Bad response:…
João Casarin
  • 674
  • 2
  • 9
  • 27
1
vote
0 answers

Github action coveralls command not found when using conda

I am building a GitHub action that uses coveralls to report the coverage. It worked perfectly until I have specified the GitHub environment and used conda-incubator/setup-miniconda@v2 to add and test some conda dependencies. I used the following…
1
vote
2 answers

Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:4.3.0:report on GitHub Actions

I'm trying to set up GitHub Actions for building a maven project with Coveralls on a public repository. For some reason it keeps failing with this error: Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:4.3.0:report (default-cli)…
Gyarik
  • 11
  • 2
1
vote
0 answers

coveralls is unable to sent report to coveralls.io and bagde is still "unknow"

I still faced trouble configuring coveralls. Coveralls successfully run in Travis CI and the report is visible BUT, after success, the following error occurs: ---------- coverage: platform linux, python 3.7.10-final-0 ----------- Name …
Daniel03
  • 11
  • 4
1
vote
0 answers

Can't get coveralls.io to work with Travis CI and jest

I can't get Travis CI and local builds to send coverage information to coveralls.io. Travis CI and my local machine builds was successfully capture in coveralls.io, but coverage still show nothing (0% coverage). Here is my GitHub repo, Travis CI…
koonfoon
  • 433
  • 4
  • 12
1
vote
1 answer

Migrating Coveralls Report from Travis-CI to GitHub Actions

I followed this setup guide: Integrating with coveralls.io This was perfect for Travis-CI, using coveralls and nyc. But recently when migrating to GitHub Actions, that step started failing with this error: > js-big-decimal@1.3.3 coverage…
Nil
  • 401
  • 1
  • 6
  • 18
1
vote
0 answers

Coveralls coverage suddenly started work with errors on GitLab and Appveyor with the same call

Usually I used the similar .gitlab-ci.yml code to send reports to coveralls for some of my repos: install_dependencies: stage: build script: - npm install -g gulp nyc - npm install coveralls - npm install artifacts: paths: …
1
vote
1 answer

CoverletOutputFormat vstest.console

I need to set up Coveralls. Before this I am trying to set up /p:CoverletOutputFormat=lcov with vstest.console. So I am successfully using dotnet test --results-directory "./testresults" -l trx -c Release /p:CollectCoverage=true…
1 2 3
8 9