coveralls Questions
3
Solved
I am configuring Coveralls using a GitHub Action.
I searched but I cannot find how I should be able to generate the ./coverage/lcov.info file.
When the action runs, since I don't have such file, I ...
Disgusting asked 5/10, 2020 at 13:29
3
Solved
I use coveralls in combination with coverage.py to track python code coverage of my testing scripts. I use the following commands:
coverage run --parallel-mode --source=mysource --omit=*/stuff/ido...
Paule asked 3/2, 2015 at 11:12
10
I am trying to use coveralls.io to show a coverage badge for my tests, but the coverage badge is stuck on "unknown".
The relevant repo is here: https://github.com/cfogelberg/grunt-set-app-mode
Wh...
Atherton asked 21/5, 2014 at 15:49
3
Solved
I want to upload my Jacoco test report to Coveralls automatically after my Travis build finishes. It works for Java, but how to configure it for Kotlin?
Error message
I can generate a Jacoco ...
Amorphism asked 18/6, 2018 at 6:1
1
Solved
I'm trying to add a code coverage % badge to my repos README.md
I'm currently using Github actions to automate my pytest testing. I had that working on its own, but ive been struggling trying to ge...
Interfaith asked 29/3, 2020 at 6:12
1
Solved
Coveralls python wrapper (python-coveralls) recently received a major update (2.2.0 -> 3.0.0) and my github-actions workflow is no longer running.
This is the relevant part of my workflow:
test...
Centum asked 12/1, 2021 at 22:5
1
I'm experiencing problems with my github repo configuration. Here it is - umbress. I have Github Actions CI enabled and configured and I want to have the coverage badge in my repo so everyone who w...
Forcefeed asked 23/2, 2020 at 12:19
6
Solved
I want to track test coverage on a go project using Coveralls, the instructions for the integration reference using
https://github.com/mattn/goveralls
cd $GOPATH/src/github.com/yourusername/your...
3
Solved
Considering we have NPM script with a pipe, similarly to what's suggested in Istanbul documentation:
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls"
It obviously...
Idealism asked 17/9, 2018 at 15:36
4
Solved
tl;dr:
I'm setting up CI for a project of mine, hosted on github, using tox and travis-ci. At the end of the build, I run converalls to push the coverage reports to coveralls.io. I would like to m...
2
travis ci fails as the out put of reporter is empty string.
NODE_ENV=test YOURPACKAGE_COVERAGE=1 mocha --compilers coffee:coffee-script/register --require blanket --reporter mocha-lcov-reporter | ...
2
I currently have TravisCI building on PRs in a public GitHub repo.
The instructions for Coveralls say to put this in a .coveralls.yml file:
service_name: travis-pro
repo_token: <my_token>
...
1
Is it possible to get separate coverage reports for front-end and back-end tests for a single repository?
It seems one possible way is to concatenate the lcov reports into one and then ship to cov...
1
I am on the Coveralls.io site and it says:
If you intend to submit coverage data via a private CI or command line
other than Travis Pro, add the following line to your .coveralls.yml :
repo_...
Cut asked 27/6, 2017 at 2:31
2
Solved
This question: How to test os.exit scenarios in Go (and the highest voted answer therein) sets out how to test os.Exit() scenarios within go. As os.Exit() cannot easily be intercepted, the method u...
Noahnoak asked 15/11, 2016 at 17:3
2
I'am building an app in Java with gradle as build tool. I use Travis CI and wanted to get the code coverage with Coveralls.
But when grade builds my project, I get the following output:
HTTP/1.1 4...
1
I have node.js based projects that also include client side code. I have 2 separate unit test suites, 1 for front end and 1 for back end. I currently have mocha running using blanket for code cover...
Verbatim asked 9/2, 2014 at 12:4
1
Solved
I have an app (https://github.com/idmillington/dendry) that uses Travis CI to monitor build status. I use Istanbul to general a coverage report, and I'd like to send this to Coveralls, to generate ...
1
Solved
I'm having issues getting coveralls to work. I've created a simple project here.
It seems to be outputting the report correctly, but I'm definitely missing a step somewhere because coveralls doesn...
Harte asked 18/3, 2014 at 20:19
1
© 2022 - 2024 — McMap. All rights reserved.