I am writing custom test runner for django app. In django app folder i got folder like this one
But when i try to run tests I got error:
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
In SeleniumTestCase i got sth like this:
class SeleniumTestCase(TestCase):
body
I believe it is something wrong with package not with my runner. Thanks for any help in advance.
selenium_testsis not on your PYTHONPATH. Try adding an__init__.pyto theselenium_testsdirectory. – Wessie Oct 14 '12 at 22:08