検索

ホームページ  >  に質問  >  本文

python - HTMLTestRunner报错:raise TypeError("{} is not callable".

Python3 在使用HTMLTestRunner时,报错:raise TypeError("{} is not callable".format(repr(test)))

代码如下:

import pymysql
import unittest
import time
import unittest.suite
import HTMLTestRunner
import sys
def hell(a):
    print(a)
    return a


testunit = unittest.TestSuite()
testunit.addTest(hell('ad'))

filename = '/Users/vivi/Downloads/aa.html'
fp = open(filename, 'wb')  # 之前写的是file(filename,'wb'),但是无法识别file方法,改成open,OK!
runner = HTMLTestRunner.HTMLTestRunner(stream=fp, title=u'print', description=u'简单')
runner.run(testunit)

运行后报错:

Traceback (most recent call last):
  File "/Applications/Python 3.5/……/B.py", line 30, in <module>
    testunit.addTest(hell('ad'))
  File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/unittest/suite.py", line 47, in addTest
    raise TypeError("{} is not callable".format(repr(test)))
TypeError: 'ad' is not callable
天蓬老师天蓬老师2802日前1727

全員に返信(1)返信します

  • 大家讲道理

    大家讲道理2017-04-18 09:55:22

    unittest.TestSuite インスタンスの addTest() メソッドが誤って使用され、パラメータが誤って渡されます。unittest モジュールのドキュメントを注意深く読むことをお勧めします。

    コード例を示します:

    リーリー

    返事
    0
  • キャンセル返事