I'm working on a Perl module that has a lot of XS code and also uses Dist::Zilla
to manage packaging. What's the best way to test things efficiently? I know about dzil test
, but that's pretty slow because it does a full build/compile/test cycle every time it's invoked.
It would be nice to only update the parts that need updating since last test, and also to be able to run only certain t/*.t
test scripts rather than all of them. Anyone have a solution that they like?