Python:如何从模块内部运行测试

时间:2014-05-30 19:35:56

标签: python python-unittest

我有一个具有以下布局的python模块:

database_build/
database_build/__init__.py
database_build/some_code_file.py

database_build/tests/__init__.py
database_build/tests/test_database_build.py
database_build/tests/test_content/some_assets_here

test_database_build.py里面有一个类:

class TestDatabaseBuild(unittest.TestCase):

有一堆测试。这些测试从database_build模块本身导入文件,例如from some_code_file import my_class

我希望能够从database_build目录运行这组测试。我怎么做?我从其他StackOverflow问题或instructions here尝试的所有内容都不适合我。它只是说“在0.000秒内进行0测试”。

0 个答案:

没有答案