Pylons:nosetests,指定development.ini的位置?
我正在远程服务器上运行nosetests
。
在我的本地服务器上,我的 test.ini
和 development.ini
文件位于同一目录中。在我的远程服务器上,它们不是。
运行
nosetests
如果我尝试仅在远程服务器上
IOError: File '/foo/bar/development.ini' not found
,我会得到:是否有一个选项可以指定 development.ini
的位置(而不是 test.ini
,其中我认为您可以在命令行中使用 --config=
) ?如果可能的话,我不想编辑 setup.cfg
。
谢谢!
I'm running nosetests
on a remote server.
On my local server my test.ini
and development.ini
files are in the same directory. On my remote server, they are not.
If I try to run just
nosetests
on the remote server, I get:
IOError: File '/foo/bar/development.ini' not found
Is there an option to specify the location of development.ini
(as opposed to test.ini
, for which I think you could use --config=
) in on the command line? I don't want to edit setup.cfg
if possible.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装到 Pylons 安装的 virtualenv 中的鼻子测试版本应该有一个鼻子插件,允许您指定指向您的
development.ini
的--with-pylons
参数。所以
在服务器上尝试一下。
The nosetests version installed into you virtualenv of the Pylons installation should have a nose plugin that allows you to specify a
--with-pylons
parameter pointing to yourdevelopment.ini
.So try
on the server.