0

私はプロジェクト構造を持っています

myApp/
     apps/
         tests/
              __init__.py
              tests.py  

tests.py見た目は以下 の通り

from django.test import TestCase

class VideoTest(TestCase):
    def test_video_insert(self):
        self.assertTrue(true)

コマンドラインからこれをテストしようとすると、

dirBeforeMyApp$python manage.py test test.VideoTest --settings=myApp.settings.dev 

次のエラーが表示されます

  File "/Users/user/code/p/virtualenv/myApp/lib/python2.7/site-packages/django/db/models/loading.py", line 152, in get_app
    raise ImproperlyConfigured("App with label %s could not be found" % app_label)
django.core.exceptions.ImproperlyConfigured: App with label test could not be found

ここで私がしていないことは何ですか?

4

1 に答える 1

1

あなたのアプリは複数形のテストと呼ばれています。とにかく明白な理由でその名前を避けたいかもしれません

于 2012-07-16T14:08:08.777 に答える