On 2018-03-20 03:46:38, djzort wrote:
Show quoted text> per the subject, whats the mest way to exclude data files (in my case
> t/data) from being considered?
There are two main ways: you can specify alternate filefinders, as documented here:
https://metacpan.org/pod/Dist::Zilla::Plugin::Test::EOL#finder
e.g.
[FileFinder::Filter / TestsSansData]
finder = :TestFiles
skip = ^t/data/
[Test::EOL]
finder = :InstallModules
finder = :ExecFiles
finder = TestsSansData
or, you can exclude these files from consideration by most plugins that scan
files for content (see
https://metacpan.org/pod/Dist::Zilla::Plugin::Encoding):
[Encoding]
encoding = bytes
match = ^t/data/