我正在为 django 应用程序编写自定义测试运行程序。在 django app 文件夹中,我得到了像这样的文件夹
但是当我尝试运行测试时出现错误:
ERROR: AdminLoginTest (unittest.loader.ModuleImportFailure)
----------------------------------------------------------------------
ImportError: Failed to import test module: AdminLoginTest
Traceback (most recent call last):
File "D:\\python27\lib\unittest\loader.py", line 252, in _find_tests
module = self._get_module_from_name(name)
File "D:\\python27\lib\unittest\loader.py", line 230, in _get_module_f
rom_name
__import__(name)
File "D:\\selenium_tests\tests\admin_panel\AdminLoginTest.py",
line 1, in <module>
from selenium_tests.SeleniumTestCase import SeleniumTestCase
ImportError: No module named selenium_tests.SeleniumTestCase
在 SeleniumTestCase 我得到了这样的东西:
class SeleniumTestCase(TestCase):
body
我相信包裹有问题而不是我的跑步者。感谢您提前提供任何帮助。