web-dev-qa-db-ja.com

pytestがモジュールを見つけられない

私は pytestグッドプラクティス または少なくとも私に従っています。しかし、pytestは私のモジュールを見つけることができません。 PYTHONPATHに現在のディレクトリが含まれていないようです。

ソースファイル:

def add(x, y):
    return x + y

テストファイル:

import pytest
from junk.ook import add


def test_add_true():
    assert add(1, 1) == 2

そして、シェルはPython 3 "p3"と呼ばれる3つの仮想環境で出力します。

p3; pwd          
/home/usr/tmp/junk
p3; ls           
total 0
0 junk/  0 tests/
p3; ls junk      
total 4.0K
4.0K ook.py     0 __init__.py
p3; ls tests 
total 4.0K
4.0K test_ook.py     0 __pycache__/
p3; pytest
============================= test session starts ==============================
platform linux -- Python 3.4.5, pytest-3.4.1, py-1.5.2, pluggy-0.6.0
rootdir: /home/usr/tmp/junk, inifile:
collected 0 items / 1 errors                                                   

==================================== ERRORS ====================================
______________________ ERROR collecting tests/test_ook.py ______________________
ImportError while importing test module '/home/usr/tmp/junk/tests/test_ook.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
tests/test_ook.py:2: in <module>
    from junk.ook import add
E   ImportError: No module named 'junk'
!!!!!!!!!!!!!!!!!!! Interrupted: 1 errors during collection !!!!!!!!!!!!!!!!!!!!
=========================== 1 error in 0.08 seconds ============================

    def test_add_true():
        assert add(1, 1) == 2

ただし、次のコマンドを実行しても問題はありません。

p3; python -m pytest tests/
============================= test session starts ==============================
platform linux -- Python 3.4.5, pytest-3.4.1, py-1.5.2, pluggy-0.6.0
rootdir: /home/usr/tmp/junk, inifile:
collected 1 item                                                               

tests/test_ook.py .                                                      [100%]

=========================== 1 passed in 0.02 seconds ===========================

何が悪いのですか?

空の_conftest.py_ファイルをプロジェクトのルートディレクトリに配置するだけです。

_$ pwd
/home/usr/tmp/junk
$ touch conftest.py
_

プロジェクト構造は次のようになります。

_junk
├── conftest.py
├── junk
│   ├── __init__.py
│   └── ook.py
└── tests
    └── test_ook.py
_

ここで何が起こるか:pytestが_conftest.py_を検出すると、_sys.path_を変更して、conftestモジュールからデータをインポートできるようにします。したがって、空の_conftest.py_がrootdirで見つかったため、pytestはそれを_sys.path_に強制的に追加します。この副作用として、junkモジュールがインポート可能になります。

15
hoefling

__init__.pytestsディレクトリに追加し、その中のテストファイルを含むすべてのディレクトリに再帰的に追加します。

6
DBedrenko