gpt4 book ai didi

python - Docker 容器中的 Django 单元测试 : ModuleNotFoundError: No module named 'code.x' ; 'code' is not a package

转载 作者:行者123 更新时间:2023-12-05 02:42:42 24 4
gpt4 key购买 nike

这是我第一个使用 Django 的项目,也是我第一次使用 Docker。到目前为止,我真的很喜欢他们两个,但我遇到了一个一周后无法解决的问题。

我按照本教程构建了我的项目:https://medium.com/swlh/setting-up-a-secure-django-project-repository-with-docker-and-django-environ-4af72ce037f0

到目前为止,我的项目结构如下所示:

MyProject
├── backend # Django "app"
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── models.py
│ ├── permissions.py
│ ├── serializers.py
│ ├── tests.py
│ └── views.py

├── config # Django "project"
│ ├── __init__.py
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py

├── docker # Docker configuration files, content close to the source link above
│ └── ...

├── frontend # independent angular project
│ └── ...

├── __init__.py <====== # The file responsible of all the trouble !
├── .gitignore
└── manage.py

我的项目在容器内启动并运行良好,一切都按预期工作。好吧,几乎所有的东西..

我写了一些简单的测试并尝试从“网络”容器(包含网络应用程序)中运行它们每当我运行 python manage.py test 时,我都会收到以下错误:

root@web:/code# python manage.py test
System check identified no issues (0 silenced).
EE
======================================================================
ERROR: code.backend (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: code.backend
Traceback (most recent call last):
File "/usr/local/lib/python3.9/unittest/loader.py", line 470, in _find_test_path
package = self._get_module_from_name(name)
File "/usr/local/lib/python3.9/unittest/loader.py", line 377, in _get_module_from_name
__import__(name)
ModuleNotFoundError: No module named 'code.backend'; 'code' is not a package


======================================================================
ERROR: code.config (unittest.loader._FailedTest)
----------------------------------------------------------------------
ImportError: Failed to import test module: code.config
Traceback (most recent call last):
File "/usr/local/lib/python3.9/unittest/loader.py", line 470, in _find_test_path
package = self._get_module_from_name(name)
File "/usr/local/lib/python3.9/unittest/loader.py", line 377, in _get_module_from_name
__import__(name)
ModuleNotFoundError: No module named 'code.config'; 'code' is not a package


----------------------------------------------------------------------
Ran 2 tests in 0.000s

FAILED (errors=2)
Using selector: EpollSelector

即使使用完全空的 tests.py 文件,我也会遇到上述错误。

我对 Django 和 Python 的项目结构的理解是非常基本的,据我发现它与错误的导入有关,可以通过使用此处所述的相对导入来修复:Relative imports for the billionth time .

我从不手动将 code 作为包或模块导入,因为它是 Web 容器中项目的父目录。为什么测试会尝试导入它?为什么只有测试会导致此错误?

我想这与我的项目结构和 Django 设置的定义方式有关,但我承认我完全迷失了方向并且有点绝望,因为我对 Django 和 Docker 都不熟悉。

请随时询问任何特定的文件内容,提前感谢您阅读并尝试提供帮助!


编辑:如下所述,这是我的测试文件,docker-compose 和 Dockerfile。

测试.py :

from django.test import TestCase
from backend.models import User

class UserTestCase(TestCase) :
# Setups
def create_user(self, email="user@email", username="username", name="name", isActive="true", isSuperUser="false", password="pass"):
return User.objects.create(email=email, username=username, name=name, isActive=isActive, isSuperUser=isSuperUser, password=password)

# Models tests
def test_create_user(self):
user = self.create_user()
self.assertIsInstance(user, User)

我应该提一下,即使测试文件是空的,我也会遇到上述错误。


Docker 文件:

# Pull a base image
FROM python:3.9-slim-buster

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

# Create a working directory for the django project
WORKDIR /django

# Install dependencies
COPY requirements.txt /django/
RUN pip install -r requirements.txt

# Copy the project files into the working directory
COPY . /django/
WORKDIR /code

# Open a port on the container
EXPOSE 8000

docker-compose(删除了一些不相关的内容):

version: '3.9'
services:
db:
...
web:
build:
context: ./web
command: ["./docker/wait-for-it.sh", "db:5432", "--timeout=30", "--strict", "--", "python", "/code/manage.py", "runserver", "0.0.0.0:8000"]
volumes:
- ../:/code
restart: always
depends_on:
- db
front:
...

最佳答案

回答我自己的问题,因为我终于找到了我所有麻烦的原因......

我在项目的根目录下创建了一个 __init__.py 文件来将项目版本定义为常量..

在阅读了有关 Django 模块和 namespace 的各种信息后,我从我的根目录中删除了 __init__.py 并解决了问题。

**在上面编辑了我的问题以显示有问题的文件

关于python - Docker 容器中的 Django 单元测试 : ModuleNotFoundError: No module named 'code.x' ; 'code' is not a package,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67331893/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com