What approach(es) have you used for lightweight Python unit-tests on App Engine?

后端 未结 6 1874
借酒劲吻你
借酒劲吻你 2021-01-30 02:16

I\'m about to embark on some large Python-based App Engine projects, and I think I should check with Stack Overflow\'s \"wisdom of crowds\" before committing to a unit-testing s

6条回答
  •  失恋的感觉
    2021-01-30 03:15

    Since 1.3.1 version of SDK there is the build-in unit test framework.

    It is Java only right now but I feel like:

    1. it is much the same you talk about in your question (and much more - as running test in the cloud for example)
    2. and it is quite possible to port\implement the same on Python using SDK

    So does the author of this framework - Max Ross and he explicitly tells us about it in his I/O presentation "Testing techniques for Google App Engine"

    Does anyone have any updates on this topic?

提交回复
热议问题