Replies: 2 comments
-
I just updated my air install and noticed there are arguments to update the config strings, but the use case below does not work as flags are parsed by air: `air -build.cmd go test -v --run <TestToRun>` |
Beta Was this translation helpful? Give feedback.
0 replies
-
arelo is the right choice for your usage: arelo -p '**/*.go' -i '**/.*' -- go test -v --run <TestToRun> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Here I implemented a simple way to test and hot-reload with air while also indicating testing build flags, a specific test, etc without having to create a config. I'm inclined to improve it on there unless there is a want to add an
air test
command to this package.Essentially
air test <args...>
would take the arguments and dump them into a config as:Current usage examples can be found in the README:
Beta Was this translation helpful? Give feedback.
All reactions