我的项目结构如下:
软件包: unittestpackage
Python文件:test_class1.py,test_class2.py
注意: test_class1.py 正在导入 test_class2.py
我正在尝试使用以下命令从命令行运行test_class1.py,但面临以下问题。
使用的命令: python test_class1.py
我如何运行test_class1.py,它正在从命令行导入用户定义的模块test_class2.py。
答案 0 :(得分:0)
不要使用POST http://example.com/ HTTP/1.1
cache-control: no-cache
Content-Type: application/json; charset=utf-8
Accept: application/json, text/json, text/x-json, text/javascript, application/xml, text/xml
User-Agent: RestSharp/106.6.9.0
Host: example.com
Content-Length: 4
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
test
,而应该使用import unittestpackage.test_class2
或import test_class2
。
此外,您的目录中是否有import * from test_class2
文件?