undercover-el / undercover.el

A test coverage library for Emacs
MIT License
86 stars 14 forks source link

Uncommon ELisp project structure #70

Closed kostafey closed 1 year ago

kostafey commented 1 year ago

Could you please add support for uncommon ELisp project structure, e.g. if *.el source code files located not in root directory but in src one?

CyberShadow commented 1 year ago

Does that not already work? In the README there is this example:

(undercover "*.el" "awesome-extensions/*.el" (:exclude "awesome-examples.el"))

so I think you could indicate "src/*.el" there?

kostafey commented 1 year ago

Yes exactly. Thank you.