GAE 上的 web2py 单元测试

发布于 2024-12-14 19:44:48 字数 172 浏览 5 评论 0原文

如何测试打算在 GAE 上运行的 web2py 单元?

我学会了使用这种方法运行测试: python web2py.py -S api -M -R applications/api/tests/test.py

但是如何使用 dev_appserver.py & 运行测试web2py.py?

How can I test web2py units that are intended to be run on GAE?

I learned to run tests using this method:
python web2py.py -S api -M -R applications/api/tests/test.py

But how do I run tests with dev_appserver.py & web2py.py?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

淡紫姑娘! 2024-12-21 19:44:48

除非您正在测试请求,否则运行单元测试所需要做的就是将 Google App Engine SDK 放在您的 Python 路径中。

我发现这有点烦人,所以我构建了 testable-appengine 来自动化设置过程(并添加了一些它构建的 virtualenv 是件好事)。它还提供了一些有趣的示例,说明如何安装第三方库以便与应用程序一起部署。我很想看看它如何与 Web2Py 配合使用。

Unless you are testing requests, all you need to to do run unit tests is to have the Google App Engine SDK in your Python path.

I found it a little bit annoying so I built testable-appengine to automate the setup process (and add a couple nice things to the virtualenv it builds). It also has some interesting examples of how you can install third-party libraries for deployment alongside the application. I'd love to see how it works with Web2Py.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文