原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.testing.run_module_suite.html
校对:(虚位以待)
numpy.testing.
run_module_suite
(file_to_run=None, argv=None)[source]运行测试模块。
Equivalent to calling $ nosetests <argv> <file_to_run>
from the command line
参数: | file_to_run:str,可选
argv:字符串列表
|
---|
例子
添加以下内容:
if __name__ == "__main__" :
run_module_suite(argv=sys.argv)
在测试模块的末端将运行测试,当该模块在python解释器中被调用。
或者,调用:
>>> run_module_suite(file_to_run="numpy/tests/test_matlib.py")
从解释器将运行所有的测试程序在'test_matlib.py'。