我lxml
在 Google App Engine 上托管了一个简单的解析器,并进行了一些nose
测试。我知道如何在终端中运行测试,--with-gae
但我希望也能够在生产环境中在某些 URL 下运行测试,例如/unit-tests
. 我可以进行鼻子测试,例如:
import nose
nose.run()
但它以错误结束:
File "/Users/martin/develop/gae/artova-kina/nose/core.py", line 168, in parseArgs
os.chdir(self.config.workingDir)
AttributeError: 'module' object has no attribute 'chdir'
这对我来说很有意义,因为chdir
可能在 GAE 沙箱中不可用,但我认为应该有一些解决方法。有没有人尝试过这样的事情?