Workiva / goverge

A golang multi package coverage reporting tool.
Other
3 stars 8 forks source link

Allow ellipses for recursive search in --test_path flag argument #22

Open markcampanelli-wf opened 8 years ago

markcampanelli-wf commented 8 years ago

When specifying a directory to run tests in, one should be able to use the go test ellipses notation to specify to recursively search through all nested directories for tests. For example,

goverge --test_path path/...

instead of

goverge --test_path path --test_path path/subpath1 --test_path path/subpath2

wesleybalvanz-wf commented 8 years ago

At first look I thought this would be possible but after a second look it's not currently, so this is something that I would have to modify to accept ellipses in the test path, When I get a chance I will see about adding this functionality.