Is there something equivalent to Sonar for Perl? [closed]

↘锁芯ラ 提交于 2019-12-09 15:58:59

问题


Is there something equivalent to Sonar for Perl ?


回答1:


Smolder is a continuous integration framework that runs smoke tests and produces coverage reports, stats, and nice graphs. It accepts TAP input, so anything that can provide this can be plugged in. You can use the various TAP modules to provide integration on the Perl side.

You can also adapt off-the-shelf build systems. Hudson, Cruise Control and BuildBot can all be configured for Perl projects, although feature support will vary (Hudson is a little Java-centric). You can plug them together in different ways. For example, TAP::Harness::JUnit produces JUnit-like output, which can be fed to your tools.

There's also the Devel::Cover module which points out areas of untested code.

Here's an interesting discussion of code coverage in Perl.




回答2:


For code analysis, you can use PerlCritic



来源:https://stackoverflow.com/questions/1423491/is-there-something-equivalent-to-sonar-for-perl

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!