without haste but without rest

Python pytest - ModuleNotFoundError: No module named 본문

ProgrammingLanguage/Python

Python pytest - ModuleNotFoundError: No module named

JinungKim 2022. 4. 15. 18:14

Issue

unittest 모듈은 잘 작동하는데, pytest가 커스텀 라이브러리를 인식하지 못한다.

 

Solved

tests 디렉토리 내에 __init__.py가 없으면 pytest가 인식을 못하는듯..

 

 

ImportError ModuleNotFoundError in pytest · Issue #6370 · pytest-dev/pytest

Running python 3.7.3 on mac using pytest My folder structure/files is src/tests/pn/tests/functional/test_something.py src/tests/pn/tests/functional/config.py src/tests/pn/lib/util.py PYTHONPATH is ...

github.com

고맙읍니다

'ProgrammingLanguage > Python' 카테고리의 다른 글

pip uninstall all  (0) 2022.03.23
Iterable vs sequence  (0) 2022.02.15
pyenv for macOS  (0) 2022.02.10
파이썬 필드 밑줄의 의미와 프로퍼티  (0) 2022.02.04
[Python3] 데코레이터, 클로저  (0) 2021.10.19
Comments