Does anybody have any code coverage reporting tools they particularly like? I'm aware of codecov.io. I'd like something that's easy to use, compatible with (at least) Rust, Go, and Python, is free for open source projects, isn't run by a bunch of greedy schmucks.
(it _seems_ like codecov might fit those boxes, but I don't know if there are other alternatives I should consider?)
Codecov (code coverage platform) is now open source! 🥳
#opensource #testing #codecoverage
When you start adding tests to a project it's always like:
"Yeah! The coverage is 30%!"
**Then after a few more tests:**
"Good, it's now 50%, I'm going to hit 80%"
**But when it reaches 75%:**
"Shit! I just added 20 lines just to cover 0.03%?!"
@github #TDD (Test Driven Development) is great, and done well allows you to make mostly forward incremental progress.
Without it, forward progress (even if only incremental) can’t be guaranteed.
However, TDD like any tool can become pointless if not done with thoughtful skill.
#CodeCoverage tools are useful #KPI
Do you use the covers annotations from @phpunit to get a coverage report of unit tests with tested Methods only or did you run tests and the coverage report without them?!
Which standing has the code coverage report for you?
#testing #php #unittest #codecoverage
Check out my new video over at the @phparch channel on "Determining Your #CodeCoverage with #phpunit".
#codecoverage #phpunit #phpc #coders #tdd
Code coverage in Jenkins - tried to use Cobertura but it didn't do what I needed, Jacoco seems a lot easier and more flexible to set up from scratch #jenkins #java #codecoverage
git commit -m "Not happy about this but I'm excluding some more code from coverage analysis."
#ItsFridayAfternoonForPetesSake #git #coverage #codeCoverage #sonarCloud
#itsfridayafternoonforpetessake #git #coverage #codecoverage #sonarcloud
#gitlab has great support for generating code coverage statistics. It also can show coverage statistics in the repository analytics menu or as an embedded badge in your README.md. But for #go :gopher: this isn't as straight forward as you might think (and documentation isn't really covering this). Adding some suggestions in this thread...
#golang #codecoverage #ci
#gitlab #go #golang #codecoverage #ci
Experimenting with different #codeCoverage SaaS tools and I feel like all of them have about 50% of what I want. What are other #php teams using?
Experimenting with different #codeCoverage SaaS tools and I feel like all of them have about 50% of what I want. What are other #php teams using?
Hi lazy #ios dev mastodon,
what plugin do you use nowadays for #codecoverage on #jenkins?
This is mainly to work with xcresult's xccov
I am considering turning on a code coverage check for a project. Code coverage must not decrease on a commit.
I think that this is a horrible metric and that code coverage is a weak approximation of actual testing.
That being said, I need to shift testing culture a decent amount on this project and this is the "technical hammer".
Any thoughts on something less heavy handed?
#advice #codecoverage #development #softwareengineering #management
#advice #codecoverage #development #softwareengineering #management
Unterschied zwischen Testabdeckung und Codeabdeckung?
Die Code
https://www.dev-crowd.com/2022/11/07/unterschied-zwischen-testabdeckung-und-codeabdeckung/
#ExplorativesTesten #LoadandPerformance #Mocking #Penetrationtest #Projektmanagement #RestAPI #TestEngineering #Testautomatisierung #Testframework #Testlink #Testmanagement #Testplan #Testsuites #Tools #Apptesting #Codecoverage #crossbrowsertesting #flakytesting #ManualTesting #Penetrationtesting #pytest #Regressiontesting #testcoverage
#ExplorativesTesten #LoadandPerformance #mocking #PenetrationTest #projektmanagement #restapi #TestEngineering #Testautomatisierung #Testframework #TestLink #TestManagement #Testplan #Testsuites #tools #Apptesting #codecoverage #crossbrowsertesting #flakytesting #ManualTesting #penetrationtesting #pytest #Regressiontesting #testcoverage
#DZone #AgileZone "How To Keep Code Quality Under Control In 7 Steps" #Agile #Quality #CodeQuality #Code #Dev #CodeStyle #Design #Security #CodeCoverage #CodeReview ... https://dzone.com/articles/how-to-keep-code-quality-under-control-in-7-steps
#dzone #agilezone #agile #quality #codequality #code #dev #codestyle #design #security #codecoverage #codereview
#DZone #AgileZone "How To Keep Code Quality Under Control In 7 Steps" #Agile #Quality #CodeQuality #Code #Dev #CodeStyle #Design #Security #CodeCoverage #CodeReview ... https://dzone.com/articles/how-to-keep-code-quality-under-control-in-7-steps
#codereview #codecoverage #security #design #codestyle #dev #code #codequality #quality #agile #agilezone #dzone
"% of #CodeCoverage in an ideal project? I'd say it's around 66.7%... allow me to be blunt and say that 1/3 of the code every #SoftwareProject is irrelevant, buggy, overly complicated, or simply sucks"
#codecoverage #softwareproject
Implemented #SonarCloud in one of my #npm projects and it gave me such a hard time failing the scans.
Finally managed to get 94.4% code coverage with 0 issues.
It's a really great tool to detect bugs and the minor code smells you might have easily overlooked and improves the quality of your code drastically.
#npm #nodejs #javascript #sonar #SonarCloud #codeQuality #codeCoverage #cicd #devops
#SonarCloud #sonar #codequality #npm #nodejs #javascript #codecoverage #cicd #devops
grcov, https://github.com/mozilla/grcov
Rust tool to collect and aggregate code coverage data for multiple source files.
#rustlang #test #codecoverage #quality