如何将 Django 应用程序测试拆分到多个文件中

发布于 2024-11-10 09:51:05 字数 249 浏览 0 评论 0原文

我正在开发 Django 1.2 应用程序,并且我是该框架的初学者。我想将应用程序的测试分成几个文件 https://github.com/ vkhemlan/BolsaTrabajo/tree/master/bolsa_trabajo,我该怎么做?我需要进行哪些配置?

I'm working on a Django 1.2 app and I'm a kind of beginner with the framework. I want to split my tests in several files for the app https://github.com/vkhemlan/BolsaTrabajo/tree/master/bolsa_trabajo, how I can do that? What configurations do I have to do?

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

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

发布评论

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

评论(1

橙幽之幻 2024-11-17 09:51:05

这是一个关于测试 django 应用程序的非常好的指南:
Django 测试指南

示例应用程序github表单视图模型的测试拆分为单独的文件,因此这对您来说可能是一个很好的示例。

请注意每个测试模块是如何导入到 __init__.py 中的:

from polls.tests.forms import *
from polls.tests.models import *
from polls.tests.views import *

Here's a really good guide on testing django apps:
A Guide to Testing in Django

And the example app on github splits the tests for forms, views and models into separate files, so it is probably a good example for you.

Note how each test module gets imported in __init__.py:

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