cweill / gotests

Automatically generate Go test boilerplate from your source code.
Apache License 2.0
4.92k stars 346 forks source link

Unable to Recursively Apply Generating to All Files in a Directory #186

Open hotsukai opened 11 months ago

hotsukai commented 11 months ago

Hi, I'm trying to recursively apply generating to all files under a specific directory. For instance, I want to generate all files under the pkg directory. I have attempted the following commands, but none of them seem to be working properly.

gotests -w -all  pkg/...
gotests -w -all  pkg/*
gotests -w -all  pkg/**/*
gotests -w -all  pkg/
gotests -w -all  pkg

env

go version go1.20.6 darwin/arm64