6

我正在开发一个 django 项目,其中有多个应用程序。每个应用程序都有一个测试目录,其中包含整个项目的测试。我的目录结构如下。

Project
      App_1
           tests
               __init__.py
               tests_views.py
      App_2
           tests
               __init__.py
               tests_views.py
      settings.py
      manage.py

我可以像这样运行测试

python manage.py test App_1.tests

它运行 App_1/tests/test_views.py 中的所有测试。但我必须为我项目中的所有应用程序执行此操作。我想要一个命令来运行我项目中所有应用程序中的所有测试。我试过跑步

python manage.py 测试

但我收到以下错误

Traceback (most recent call last):
  File "manage.py", line 9, in <module>
    execute_from_command_line(sys.argv)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 338, in execute_from_command_line
    utility.execute()
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 330, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/core/management/commands/test.py", line 30, in run_from_argv
    super(Command, self).run_from_argv(argv)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/core/management/base.py", line 390, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/core/management/commands/test.py", line 74, in execute
    super(Command, self).execute(*args, **options)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/core/management/base.py", line 441, in execute
    output = self.handle(*args, **options)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/core/management/commands/test.py", line 90, in handle
    failures = test_runner.run_tests(test_labels)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/test/runner.py", line 209, in run_tests
    suite = self.build_suite(test_labels, extra_tests)
  File "/srv/www/project/shared/env/local/lib/python2.7/site-packages/django/test/runner.py", line 150, in build_suite
    tests = self.test_loader.discover(start_dir=label, **kwargs)
  File "/usr/lib/python2.7/unittest/loader.py", line 204, in discover
    tests = list(self._find_tests(start_dir, pattern))
  File "/usr/lib/python2.7/unittest/loader.py", line 285, in _find_tests
    for test in self._find_tests(full_path, pattern):
  File "/usr/lib/python2.7/unittest/loader.py", line 265, in _find_tests
    raise ImportError(msg % (mod_name, module_dir, expected_dir))
ImportError: 'tests' module incorrectly imported from '/vagrant/code/project/App_1/tests'. Expected '/vagrant/code/project/App_1'. Is this module globally installed?

谁能告诉我如何使用单个命令在我的应用程序中进行所有测试?

4

3 回答 3

6

运行python manage.py test是一次运行项目中所有测试的正确方法,您的错误是由其他原因引起的。

你的测试的文件夹结构有问题吗?要使用默认的单元测试功能,它们应该像这样存储:

myproject/
   myapp/
       tests/
           __init__.py
           test_models.py
           test_views.py

我认为您的问题是因为您的tests文件夹中可能有一个文件tests夹,这使 unittest 感到困惑。还要确保你__init__.py的文件夹中有这样的文件,以便 python 可以看到里面的文件。在这里查看 Django 测试文档。

于 2016-04-11T11:07:51.113 回答
3

І如果您在应用程序中创建测试包,请删除应用程序中的默认 test.py 文件。这将解决您的问题。

于 2020-08-16T15:33:08.150 回答
1

我有一个类似的问题。我的文件结构看起来像这样

project/
    apps/
        app_1/
            test/
                __init__.py
                test_views.py

        app_2/
             test/
                __init__.py
                test_models.py
    manage.py

对我来说有助于设置文件夹(不是已安装应用程序中的应用程序)。所有测试都通过命令python ./manage.py test apps/注意尾部斜杠运行

app_1 的测试通过命令运行python ./manage.py test app_1

于 2020-06-03T05:30:37.180 回答