radagast icon indicating copy to clipboard operation
radagast copied to clipboard

Radagast doesn't detect uncovered namespaces

Open arrdem opened this issue 10 years ago • 0 comments

I use the following ~/bin/radagast (which is highly dependant on my aliases but whatever)

#!/bin/bash
/usr/bin/grep -h -r "(ns" `git root`/test | awk "{print \$2}" | tr "\n" " " | xargs lein radagast

This works great for making sure that namespaces with tests get checked with radagast. However, this approach can't detect what namespaces are loaded and don't have any test coverage at all. It'd be nice if instead of taking a whitelist and a sequence of test namespaces radagast could use the same file location that lein does to locate and load all namespaces for which there is source code, then use the existing annotate all and test all approach.

arrdem avatar Jun 16 '14 15:06 arrdem