dongliu8542 2013-12-14 15:40
浏览 26
已采纳

从dev_appserver自动编译后如何运行golang测试

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?

  • 写回答

2条回答 默认 最新

  • doty58493 2013-12-16 05:41
    关注

    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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?