I am running dev_appserver.py and so it auto builds as I save go files (I need to run this and not goapp because of log_level I need).
When there is a successful build I would like the tests for the project (goapp test) to run automatically. How can I do this?
You could use something like https://github.com/nf/watch in a separate terminal window. It'll re-run tests in parallel to dev_appserver.py
.
Install: go get github.com/nf/watch
Run from your app's directory: watch goapp test
With AppEngine, I use the entr
app like so:
$ find ./*.go | entr goapp test