将测试配置(test.ini)通过nosetests传递到金字塔

发布于 2024-12-20 12:12:50 字数 241 浏览 1 评论 0原文

我已经看到了这个,这建议直接解析配置信息:

passing **settings info从鼻子进行单元测试

...但这仍然需要我对“test.ini”进行硬编码。如何通过nosetests 将配置文件的名称传递给我的应用程序?

I have seen this, which suggests parsing the config information directly:

passing **settings info to unittest from nose

...but that still requires me to hard-code 'test.ini'. How can I pass the name of the config file through nosetests to my application?

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

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

发布评论

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

评论(1

ぃ弥猫深巷。 2024-12-27 12:12:50

Pylons 过去通过注册一个特殊的鼻子插件来做到这一点,该插件向鼻子添加了 --with-pylons=test.ini 选项。我可能建议只使用文件名设置一个环境变量并以这种方式处理它。

export TEST_INI="test.ini"
env/bin/nosetests
import os

ini_file = os.environ['TEST_INI']

Pylons did this in the past by registering a special nose plugin that added the --with-pylons=test.ini option to nose. I might recommend just setting an environment variable with the filename and dealing with it that way.

export TEST_INI="test.ini"
env/bin/nosetests
import os

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