使用nose + GAE插件进行Python单元测试

时间:2012-09-17 09:15:34

标签: python unit-testing google-app-engine nose

从今天早上起,我的Python单元测试工具Nose + NoseGAE出现了一些奇怪的问题。我想在终端中为我的GAE项目运行单元测试,结果是这个错误:

Traceback (most recent call last):
  File "/usr/local/bin/nosetests", line 8, in <module>
    load_entry_point('nose==1.2.1', 'console_scripts', 'nosetests')()
  File "/Library/Python/2.7/site-packages/nose-1.2.1-py2.7.egg/nose/core.py", line 118, in __init__
    **extra_args)
  File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/unittest/main.py", line 94, in __init__
    self.parseArgs(argv)
  File "/Library/Python/2.7/site-packages/nose-1.2.1-py2.7.egg/nose/core.py", line 135, in parseArgs
    self.config.configure(argv, doc=self.usage())
  File "/Library/Python/2.7/site-packages/nose-1.2.1-py2.7.egg/nose/config.py", line 338, in configure
    self.plugins.configure(options, self)
  File "/Library/Python/2.7/site-packages/nose-1.2.1-py2.7.egg/nose/plugins/manager.py", line 284, in configure
    cfg(options, config)
  File "/Library/Python/2.7/site-packages/nose-1.2.1-py2.7.egg/nose/plugins/manager.py", line 99, in __call__
    return self.call(*arg, **kw)
  File "/Library/Python/2.7/site-packages/nose-1.2.1-py2.7.egg/nose/plugins/manager.py", line 167, in simple
    result = meth(*arg, **kw)
  File "build/bdist.macosx-10.7-intel/egg/nosegae.py", line 84, in configure
  File "/usr/local/google_appengine/google/appengine/tools/dev_appserver.py", line 61, in <module>
    import simplejson
ImportError: No module named simplejson

这很奇怪,因为我甚至没有在任何地方使用simplejson。我知道它是Django的一部分,但我也没有使用它。

OS X 10.7.4
Python 2.7.1
鼻子1.2.1
NoseGAE 0.2.0

你知道可能出现什么问题吗?

1 个答案:

答案 0 :(得分:0)

这可能只是OS X上旧版GAE的临时问题。新版本运行没有任何问题。