Reputation: 13677
CPANPLUS has a plugin to report failures to CPAN Testers. However it doesn't report passes, only failures. How do I report passes for some modules I'm interested in?
Ideally I'd like to have an ability to smoke some modules from a predefined whitelist whenever a new versions of them are available. I don't want to constantly monitor the new versions, as I don't have a constantly running box, but I'd like to regularly test the modules I'm interested in.
Ideally I'd like to do that from cpanp
because it does other things for me, such as finding outdated modules and building various binary packages of modules before installing them. So if it's some other tool than cpanp, I'd like to avoid the need to install the modules in the process. In case it's needed I can install the dependencies using cpanp and then run the tests using other tools.
Upvotes: 2
Views: 59
Reputation: 13677
So far the best solution I've found is to use https://metacpan.org/pod/CPANPLUS::YACSmoke. It lets me test individual distributions specified on the command line while avoiding retesting the same version over and over.
Upvotes: 2