Python ModuleNotFoundError。可能是一个简单的错误

时间:2019-07-02 01:37:57

标签: python-3.x

我正在尝试使用pytest为我正在处理的项目设置一些测试用例,并像这样设置目录。

C:.
│   OpenGLTestCase.py
│   Sprite.py
│   SpriteManager.py
│   SpriteRenderer.py
│   Texture.py
│   __init__.py
│
├───.pytest_cache
│   │   .gitignore
│   │   CACHEDIR.TAG
│   │   README.md
│   │
│   └───v
│       └───cache
│               lastfailed
│               nodeids
│               stepwise
│
├───tests
│   │   colorGrid.png
│   │   OpenGLTestCaseExample.py
│   │   OpenGLTestCaseExample2.py
│   │   test.png
│   │   test.svg
│   │   test2.png
│   │   test3.png
│   │   test_over_colorGrid_at_128left_256_top.png
│   │   test_over_uvGrid_at_128left_256_top.png
│   │   test_render_image_expected.png
│   │   test_render_triangle_expected.png
│   │   test_sprite_manager.py
│   │   test_Texture.py
│   │   uvGrid.png
│   │
│   └───__pycache__
│           test_sprite_manager.cpython-37-pytest-5.0.0.pyc
│           test_sprite_manager.cpython-37-PYTEST.pyc
│           test_Texture.cpython-37-pytest-5.0.0.pyc
│           test_Texture.cpython-37-PYTEST.pyc
│
└───__pycache__
        OpenGLTestCase.cpython-37.pyc
        Sprite.cpython-37.pyc
        SpriteManager.cpython-37.pyc
        SpriteRenderer.cpython-37.pyc
        Texture.cpython-37.pyc
        __init__.cpython-37.pyc

保存所有这些的父文件夹称为“ pygameOpenGLUtil”。我的主要4个文件与__init__.py一起位于最高目录中。当我尝试在此级别运行pytest时,它会抛出“ ModuleNotFoundError:没有名为'pygameOpenGLUtil'的模块”。这扔在我的test_sprite_manager.py文件中。我以前已经将此方法用于其他项目,但是我似乎无法弄清楚这个项目有什么问题,我敢肯定,我只是忘记了一些小东西。

这是我的__init__.py

from .OpenGLTestCase import *
from .Sprite import *
from .SpriteManager import *
from .SpriteRenderer import *
from .Texture import *

这是我的test_sprite_manager.py:

import pygame
from OpenGL.GL import *
from pygameOpenGLUtil import *

class SpriteManagerTest(OpenGLTestCase):
    def test_add_sprite(self):
        test_sprite_map = SpriteManager()
        test_sprite_one = Sprite(test_sprite_map)
        test_sprite_one = Sprite(test_sprite_map)


if __name__ == "__main__":
    unittest.main()

我正在运行python3.7.3和pytest版本5.0.0

0 个答案:

没有答案